When i open my web in 1st time IE get data to process, But in next times IE don't get new data to process,It use old data. What happen???
$.get('db/chkBillNo.php',
{
'branchID' : branchID,
'toDay' : toDay2
},
function(data)
{
/****** PROCESS ******/
});
chkBillNo.php
<?php
include 'condb.php';
$query = mysql_query('SELECT COUNT(`billNo`) AS count FROM `bill` WHERE `branchID` = "'.$_GET['branchID'].'" AND `billDate` = "'.$_GET['toDay'].'" ') or die(mysql_error());
$data = mysql_fetch_object($query);
echo $data->count;
?>
Only IE caused this problem. What causes this problem and then solve it???
PS.My english isn't well. Thank you very much.