I am editing my application form.So what i am Doing telling you here..I am already logged in
* First of all i am giving a edit link(edit_profi le1.php) on my home page
* NOw i am asking again for username and password so that unauthorized user can not making editing in your profile
* NOw on edit_profile1.p hp i am checking username and password sent by user to the username and password stored in database
* If username and password are correct then i am redirected to edit_profile2.p hp
* Here I am creating a form with same text boxes as i used in filling the application form(i am using same name for boxes).Here is a button with name update
For the last page edit_profile3.p hp i am giving coading here
Now when i excute this error is coming like this Parse error: syntax error, unexpected T_ENCAPSED_AND_ WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in F:\Study Material\Linux\ xampp\htdocs\ed it_profile3.php on line 21
Line number 21 is
$sql="update employee set ($row['Username']=$usr,$row['Password']=$pwd)";
NOw i am not getting where i am getting wrong.Plz also tell me is there any other method for updating application forms any another logic.Plz check out above.
* First of all i am giving a edit link(edit_profi le1.php) on my home page
* NOw i am asking again for username and password so that unauthorized user can not making editing in your profile
* NOw on edit_profile1.p hp i am checking username and password sent by user to the username and password stored in database
* If username and password are correct then i am redirected to edit_profile2.p hp
* Here I am creating a form with same text boxes as i used in filling the application form(i am using same name for boxes).Here is a button with name update
For the last page edit_profile3.p hp i am giving coading here
Code:
<?php
$con=mysql_connect("localhost","root","");
if(!$con)
{
die('Could Not Connect:'.mysql_error());
}
mysql_select_db("tcs",$con);
$usr=$_POST["username"];
$pwd=hash('sha1',$_POST['password']);
$query="select * from employee where Username='$usr' and Password='$pwd'";
$result=mysql_query($query,$con);
if ($result)
{
$row=mysql_fetch_array($result);
$sql="update employee set ($row['Username']=$usr,$row['Password']=$pwd)";
$deepak=mysql_query($sql,$con);
if($deepak)
{
echo "Updation Successfull"
}
}
?>
Line number 21 is
$sql="update employee set ($row['Username']=$usr,$row['Password']=$pwd)";
NOw i am not getting where i am getting wrong.Plz also tell me is there any other method for updating application forms any another logic.Plz check out above.
Comment