Jump to content

strange one...


Devon11

Recommended Posts

ok .. i have this

			mysql_query("UPDATE users SET on='ON' WHERE username = '$username'");
		mysql_query("UPDATE users SET ip='$ip' WHERE username = '$username'");

 

and the 'ip' gets a value but 'on' don't get any value , why? (the lines are one after another like here)

 

on  varchar(255)  latin1_swedish_ci

ip  varchar(255)  latin1_swedish_ci

Link to comment
Share on other sites

Because ON is a reserved word and you should not have a column named using it - http://dev.mysql.com/doc/refman/6.0/en/reserved-words.html

 

Also, your code has no error checking, error reporting, or error recovery logic in to to detect if the query worked or failed, tell you that it failed, or take appropriate action when it fails.

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.