Jump to content

Whats the problem in the code


pranshu82202

Recommended Posts

<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

Link to comment
https://forums.phpfreaks.com/topic/253296-whats-the-problem-in-the-code/
Share on other sites

Don't kick yourself too hard  :D

 

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

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.