monkeybidz Posted September 18, 2007 Share Posted September 18, 2007 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! ??? Quote Link to comment https://forums.phpfreaks.com/topic/69726-mysql-update-table/ Share on other sites More sharing options...
dilum Posted September 18, 2007 Share Posted September 18, 2007 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" " Quote Link to comment https://forums.phpfreaks.com/topic/69726-mysql-update-table/#findComment-350359 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.