Jump to content

Mysql Update table


monkeybidz

Recommended Posts

I have a very simple form with a dropdown menu: Yes & No as list values. What i need it to do is update a table in mysql database when a user htis the submit button.

 

How would i query the database?

 

This is what i got somewhere else, but does not work:

 

mysql_query("UPDATE `my_members` SET my_private WHERE my_private=$my_private AND my_id=$_SESSION["my_userid"]");

 

Default for my_private=No in database.

 

Any help will do!

Thanks! ???

Link to comment
Share on other sites

wher is your new my_private value?  like $my_private!

 

what about this?

 

mysql_query("UPDATE my_members SET my_private=$my_private WHERE my_private=$my_private AND my_id=$_SESSION['my_userid']");

 

And can't  use double quatation whithine double quat. Like this " "test" "

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.