Jump to content

mtran

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mtran's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. This works fine. Thanks for your prompt help, Poirot. Really appreciated!
  2. 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!
×
×
  • 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.