mtran Posted June 5, 2006 Share Posted June 5, 2006 I have simple form with mutiples of 2 fields: status1 / name1,status2 / name2...[code]<form method="post" action="test1_edit.php"> <input type='checkbox' name='status[]' value='active'>Status1 <input name='name[]' type="text" />Name1<br /> <input type='checkbox' name='status[]' value='active'>Status2 <input name='name[]' type="text" />Name2<br /> <input name="submit" type="submit" /><br /> </form>[/code]The test1_edit.php file is as below. If I only [!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]INSERT $status, the form is working fine, but I don't how to INSERT both $status and $name in FOREACH[!--colorc--][/span][!--/colorc--].[code]$status=$_POST['status']; $name=$_POST['name']; foreach ($status as $status ){ mysql_query ("INSERT INTO test (status) VALUES('$status')",$connection); // This works fine//mysql_query ("INSERT INTO test (status, name)) VALUES('$status','$name')",$connection);// This doesn't work. if (mysql_affected_rows()==1){ continue; } else { echo "Something went wrong!"; break; } } header("Location: test1.php"); ?>[/code]Thanks for help! Quote Link to comment https://forums.phpfreaks.com/topic/11282-mysql-insert-multiple-record-from-form/ Share on other sites More sharing options...
poirot Posted June 6, 2006 Share Posted June 6, 2006 I'll assume both $_POST['status'] and $_POST['name'] are arrays with the same length. Then:[code]for ($i=0; $i<count($_POST['status']); $i++) { $status = $_POST['status'][$i]; $name = $_POST['name'][$i]; mysql_query ("INSERT INTO test (status, name)) VALUES('$status','$name')");}[/code]Use this instead of the foreach loop. Quote Link to comment https://forums.phpfreaks.com/topic/11282-mysql-insert-multiple-record-from-form/#findComment-42264 Share on other sites More sharing options...
mtran Posted June 6, 2006 Author Share Posted June 6, 2006 This works fine. Thanks for your prompt help, Poirot. Really appreciated! Quote Link to comment https://forums.phpfreaks.com/topic/11282-mysql-insert-multiple-record-from-form/#findComment-42278 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.