Process Mysql Function And Display Using Jquery Ajax (with Time Invterval For Each)
LOL idk if the title correct, but let me explain Hi.. Iam newbie on jquery ajax and have some problem here right now i have db called url.sql with this format tbl_url -------------
Solution 1:
You can call the below code on onclick
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
jQuery.ajax({
url:'YOUR PHP url',
type:'POST',
data:'SEND YOUR DATA',
success:function(results){
jQuery("#oresponsecontainer").html(results);
}
});
Post a Comment for "Process Mysql Function And Display Using Jquery Ajax (with Time Invterval For Each)"