I have 1 php index.php file name. in this file I want to pass one variable from ajax to php.
var elem = document.getElementById("mydiv").value;
(function($)
{
$(document).ready(function()
{
$.ajax(
{
type:"POST",
url: window.location.href,
data: 'action='+elem,
beforeSend: function() {
$('#cctv').hide();
},
complete: function() {
$('#cctv').show();
},
success: function() {
$('#cctv').show();
}
});
var $container = $("body");
$container.load('findAllPath.php',{'function': 'findAllPath'});
var refreshId = setInterval(function()
{
$container.load('findAllPath.php',{'function': 'findAllPath'});
}, 10000);
});
})(jQuery);
and my php
if (isset ($_POST['action']))
{
echo $_POST['action'];
}
in firebug, I see that ajax already sent 'action = value', but in php, $ _POST ['action'] is empty. can anyone help me what is wrong with my code? thank
source
share