pranshu82202 Posted December 16, 2011 Share Posted December 16, 2011 <body> <script type="text/javascript"> var a; function acc_den(a, str) { var xmlhttp; if (str.length==0) { document.getElementById("ajax").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("ajax").innerHTML=xmlhttp.responseText; } else { document.getElementById("ajax").innerHTML="<center><img src=\"l2.gif\"/></center>"; } } if(a==1) { xmlhttp.open("GET","allow.php?usname="+str,true); xmlhttp.send();} if(a==2) {xmlhttp.open("GET","deny.php?usname="+str,true); xmlhttp.send();} } </script> <button onclick="acc_den(1, "sweetarchie")" value="click me">CLICK ME</button> <div id="ajax"> </div> </body> and code of allow.php is : <?php include('dbcon.php'); $usname=$_GET['usname']; $sql=mysql_query("UPDATE usname SET check_status=1 where usname='$usname'"); $reason="Allowed <b>".$usname."</b> to access the data"; include('my_log.php'); echo "CHANGED"; ?> and code of Deny.php is : <?php include('dbcon.php'); $usname=$_GET['usname']; $sql=mysql_query("UPDATE usname SET check_status=0 where usname='$usname'"); $reason="Denied <b>".$usname."</b> to access the data"; include('my_log.php'); echo "CHANGED AGAIN"; ?> I am not gtting wy this code is not working.... ANY HELP WILL BE APPRECIATED - PRANSHU AGRAWAL pranshu.a.11@gmail.com Quote Link to comment https://forums.phpfreaks.com/topic/253296-whats-the-problem-in-the-code/ Share on other sites More sharing options...
sunfighter Posted December 16, 2011 Share Posted December 16, 2011 Don't kick yourself too hard if(a==1) { xmlhttp.open("GET","allow.php?usname="+str,true); xmlhttp.send('');} <=== HERE if(a==2) {xmlhttp.open("GET","deny.php?usname="+str,true); xmlhttp.send('');} <=== HERE Quote Link to comment https://forums.phpfreaks.com/topic/253296-whats-the-problem-in-the-code/#findComment-1298572 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.