oliverj777 Posted November 7, 2011 Share Posted November 7, 2011 Hello, I'm working on a PHP register form, all I want to do, is to be able to insert an extra variable into the database: // now we insert it into the database $insert = " INSERT INTO users (username, password) VALUES ('".$_POST['username']."', '".$_POST['pass']."') "; $add_member = mysql_query($insert); right, so I have the username and password variable being passed. But I also want to pass a variable into a column called 'weaponAttachments', all I want for this variable to be is 5000. So, in other words, something like this: 5000['weaponAttachments'] Thanks Quote Link to comment https://forums.phpfreaks.com/topic/250647-php-insert-variable-into-table/ Share on other sites More sharing options...
MasterACE14 Posted November 8, 2011 Share Posted November 8, 2011 $insert = "INSERT INTO users (username, password, weaponAttachments) VALUES ('".$_POST['username']."', '".$_POST['pass']."', '5000')"; Quote Link to comment https://forums.phpfreaks.com/topic/250647-php-insert-variable-into-table/#findComment-1286139 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.