vote up 0 vote down star

i have a field in table opt named confirm of type tinyint. i want to insert value(1) by this statement but it is not working can any one help??

$connect= mysql_connect("localhost","root") or die ("Sorry, Can not connect to database");

mysql_select_db("login") or die (mysql_error());

$user=$_POST['staff'];
echo $user;

$query="SELECT  * from users where username='$user' ";
$result=mysql_query($query,$connect) or die(mysql_error());
$row=mysql_fetch_array($result);

$uid=$row['userid'];
echo $uid;

$query="SELECT  * from opt where userid='$uid' ";
$result=mysql_query($query,$connect) or die(mysql_error());
$row=mysql_fetch_array($result);

if($row['confirm']==0)
{

$query = "INSERT INTO opt (confirm) values(1)";
echo 'The user selected options has confirmed';


}
?>
flag
What is the error message you're getting, if any? – Welbog Jan 20 at 14:39
no error messages but (1) is not inserted – sermed Jan 20 at 14:45
This is a duplicate of stackoverflow.com/questions/460997/… Please edit that question if you want to add more information – Greg Jan 20 at 14:46
your code is insecure: everybody has full control over your database – Jacco Jan 20 at 15:02

7 Answers

vote up 8 vote down

You are not executing the query.

link|flag
Last query remains unexecuted – aivarsak Jan 20 at 14:42
vote up 0 vote down

$query is a variable and there's no reason that it would cause a record to magically get inserted into the opt table.

You need to insert the following line after $query = "...":

mysql_query($query);

Also, I hopethat's not the code you're running in production.

You need to have the following somewhere:

$user = mysql_real_escape_string($user);
link|flag
vote up 2 vote down

add an extra

$result=mysql_query($query,$connect) or die(mysql_error());

after the line

$query = "INSERT INTO opt (confirm) values(1)";

link|flag
vote up 0 vote down

Apart from not executing the "InSERT STATEMENT",

You should probably be using an

 "UPDATE OPT SET CONFIRM = '1' WHERE USERID = $user;"

as the row already exists ('cause you managed to select it!).

link|flag
vote up 0 vote down

now this is my update but not working

$query = "UPDATE opt SET confirm = 1 WHERE userid= $uid";

link|flag
vote up 0 vote down

ok now its done thanks for all of u for helping me

link|flag
make sure you mark one of the answers as the answer to the main question to help anyone else coming to this post. – localshred Jan 20 at 18:37
vote up 0 vote down

Why is not working? what error is throwing?

Check the other fields of the table...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.