Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Incase this is my form, and I chose 'Fresh Milk' for example, what php code would I need to use in order to insert my choice into the database under the field 'choice' for example?

<select name="mydropdown">
<option value="Milk">Fresh Milk</option>
<option value="Cheese">Old Cheese</option>
<option value="Bread">Hot Bread</option>
</select>    

Thanks!

share|improve this question
8  
This is a lot of questions in one (how to connect to a database and do it well; how to read the value; etc.) and it's hard to give a good, definitive answer. Consider working through a basic PHP tutorial that gives step by step guidance – Pekka 웃 Jul 1 '11 at 15:06
Consider learning how to fish instead (metaphor): w3schools.com/php/php_mysql_intro.asp – picus Jul 1 '11 at 15:12
He forgot to add "Plz send me teh codez!" – JNK Jul 1 '11 at 15:12

closed as not a real question by JohnFx, JNK, Mitch Wheat, Artefacto, John Saunders Jul 1 '11 at 15:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted
//Assuming you are connecting to the DB
$choice = mysql_real_escape_string($_REQUEST['mydropdown']);
$sql = "INSERT INTO `table_name` (`choice`) VALUES ('$choice')";
mysql_query($sql);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.