Arkadaşlar benim amacım sayaç saymaya başla dediğimde başlıyacak dur dediğimde duracak.Durduğundaki değeri ben php de mysql veritabanina kaydebilecem.Ama bir türlü olmuyor. <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>JS Timer & Ajax POST</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script> var timerTest = null; var ajaxContent; if (window.XMLHttpRequest) { ajaxContent = new XMLHttpRequest(); // IE7, IE8, IE9, IE10 , Firefox, Chrome, Opera, Safari } else { ajaxContent = new ActiveXObject("Microsoft.XMLHTTP"); // IE6, IE5 } function timerTestCreate() { timerTest = setInterval(function(){timerTestOnTick()}, 1000); } function timerTestOnTick() { document.getElementById("timerdiv").innerHTML = document.getElementById("timerdiv").innerHTML + "•"; } function timerTestDestroy() { window.clearInterval(timerTest); } function sendAjaxContent() { ajaxContent.open("POST", "ajaxtest.php", true); ajaxContent.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); ajaxContent.send("timercontent=" + document.getElementById("timerdiv").innerHTML); } function requestAjaxContent() { document.getElementById("ajaxdiv").innerHTML = ajaxContent.responseText; } </script> </head> <body> <button onClick="timerTestCreate()">Create & Start</button> <button onClick="timerTestDestroy()">Stop & Destroy</button> <div id="timerdiv" style="height:50px; width:300px; background:#06C; color:#FFF; padding:8px;"></div> <button onClick="sendAjaxContent()">Send Content</button> <div id="ajaxdiv" style="height:50px; width:300px; background:#C00; color:#FFF; padding:8px"></div> <button onClick="requestAjaxContent()">Request Content</button> </body> $timercontent = $_POST['timercontent']; echo($timercontent);
Jquery ile yazsana bunu Ayrica bu niye ayri $timercontent = $_POST['timercontent']; echo($timercontent); < Bu ileti tablet sürüm kullanılarak atıldı >