dewey_witt Posted July 19, 2007 Share Posted July 19, 2007 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 More sharing options...
kael.shipman Posted July 19, 2007 Share Posted July 19, 2007 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 More sharing options...
dewey_witt Posted July 19, 2007 Author Share Posted July 19, 2007 Well thanx. And I tried the manual. Im a "show me" type. I know too many languages I think. But again thank you. Link to comment https://forums.phpfreaks.com/topic/60871-solved-form-help/#findComment-302877 Share on other sites More sharing options...
kael.shipman Posted July 20, 2007 Share Posted July 20, 2007 My mistake; I thought you were just taking the easy way out . Sorry! Link to comment https://forums.phpfreaks.com/topic/60871-solved-form-help/#findComment-303076 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.