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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.