Jump to content

update database using sprintf


droidus

Recommended Posts

how would i modify this code so that it works, using sprintf?:

 

if (mysql_num_rows($result) > 0) {
		mysql_query(sprintf("UPDATE members SET (Age) VALUES ('%s')",mysql_real_escape_string($age)))
		or die(mysql_error());  
		mysql_close($con);
	}

Link to comment
Share on other sites

I think you mean:

mysql_query(sprintf("UPDATE members SET Age = '%s'", mysql_real_escape_string($age)))

You might want to add a WHERE clause to that though, or you'll update all the rows in that table. For example:

UPDATE members SET age = '12' WHERE username = 'droidus'

Link to comment
Share on other sites

I think you mean:

mysql_query(sprintf("UPDATE members SET Age = '%s'", mysql_real_escape_string($age)))

You might want to add a WHERE clause to that though, or you'll update all the rows in that table. For example:

UPDATE members SET age = '12' WHERE username = 'droidus'

 

so let me make sure that i have this right:

 

mysql_query(sprintf("UPDATE members SET Age = '%s' WHERE uname = $_SESSION[user]", mysql_real_escape_string($age)))

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.