Jump to content

PHP - Insert Variable Into Table


oliverj777

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/250647-php-insert-variable-into-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.