Jump to content

[SOLVED] Form Help.


dewey_witt

Recommended Posts

OK say i have this form below. I need to put just the VALUES into a mysql database table. How? I need just the values. Please Help!

 

 

<form action="somephp.php" method="post" enctype="multipart/form-data" multiple="multiple">
<input name="thing[]" type="checkbox" value="Thing One" />
<input name="thing[]" type="checkbox" value="Thing Two" />
<input name="thing[]" type="checkbox" value="Thing Three" />
<input name="thing[]" type="checkbox" value="Thing Four" />


</form>

Link to comment
https://forums.phpfreaks.com/topic/60871-solved-form-help/
Share on other sites

Isn't that usually what you do with form inputs - use the VALUES? Sorry to be short, but you may consider actually learning the language a bit before posting; this is all in the manual:

 

<?php
//Access the variable with the $_POST array
$things = $_POST['thing']; //$things is now a numerically indexed array with only the checked values.

foreach($things as $thing) {
mysql_real_escape_string($thing);
mysql_query("insert into things set thing = '$thing'");
}
?>

 

In the above, if I checked Thing One, Thing Three and Thing Four, your $things array would be this:

<?php
$things = array(0=>'Thing One', 1=>'Thing Three', 2=>'Thing Four');
?>

Link to comment
https://forums.phpfreaks.com/topic/60871-solved-form-help/#findComment-302873
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.