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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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