Jump to content

passing multiple check box values


tet3828

Recommended Posts

I wrote this dummy script to practice passing multiple check box values through &_POST. However it is only passing the last value. How can I get it to pass however many values I check and not just the last?

 

if (!isset($_POST['test'])) {
    echo "<form action='filetest.php' method='POST'>";
    $qry = "SELECT * FROM `staff`";
    $result = mysql_query($qry) or die(mysql_error());

    while($row = mysql_fetch_array($result)) {

        $value = $row['eID'];
        echo "<input type='checkbox' value=$value name='$staff[]'>"; 	
        echo "".$row['lName'].", ".$row['fName']."<br />";	
}

echo "<input type='submit' name='test' value='TEST'></form>";

} else {

array $returned = $_POST['staff'];
echo $returned;


}

Link to comment
Share on other sites

unsurpisingly no, I still don't get it.

 

 

what is the while condition?

 

should I so something like while (number of results in posted array > $count) { display results }

 

 

if (!isset($_POST['test'])) {
    echo "<form action='filetest.php' method='POST'>";
    $qry = "SELECT * FROM `staff`";	
    $result = mysql_query($qry) or die(mysql_error());
    while($row = mysql_fetch_array($result)) {
        $value = $row['eID'];
        echo "<input type='checkbox' value=$value name='staff[]'>"; 	
        echo "".$row['lName'].", ".$row['fName']."<br />";	
    }
    echo "<input type='submit' name='test' value='TEST'></form>";
} else {

$count = 0;
    while(?) {
        $count++;
        $staff[$count];
    }
}

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.