Hi all
In my Application i have wrote an update query but its not working..Anybody plz help me here am including my code...
$head=$_GET['val'];
$date=$_REQUEST['txtdate'];
$headline=$_REQUEST['txthead'];
$update="Update tbl_circular SET date='$date',headline='$headline',description='$des' where headline like '$head')";
$update1=mysql_query($update) or die("Could not Update");
'val' is the querystring am passing to the page..
Then the die part of query is working ie its showing the error like "Could not Update"
Plz help...