Jump to content

Checkboxes help please


emma_1986

Recommended Posts

Hey guys, just wondered if anyone could help please? I am new to php and I am trying to update by database so that if any check boxes are checked then update to 'yes' and the check boxes that were not checked to update to 'no' .

 

my code for creating the check boxes is:

print "<td align = \"CENTER\" bgcolor=\"$color\">" . "<input type=\"checkbox\"  name=\"fchk1[]\"  value=\"$doc_no\" echo '$checked' >

and my code for the action page is:

if(isset($_POST['update'])) {
$fchk1=$_POST['fchk1'];
if (is_array($fchk1)){
      foreach ($fchk1 as $doc_no){
        $update_query = "UPDATE uploads u SET u.saccess = 'yes' WHERE  u.doc_no = '$doc_no'";
        $result = $db->query($update_query);
        //$db->disconnect();
        header("Location: main.php?target=docs&type=h");
            }
   }
else {

   $update_query = "UPDATE uploads SET saccess = 'no'";
   $result = $db->query($update_query);
   //$db->disconnect();
   header("Location: main.php?target=docs&type=h");
}
}

 

the checked part works fine, but the unchecked part does not work unless there is no checked boxes.

 

Thanx Emma

Link to comment
https://forums.phpfreaks.com/topic/152531-checkboxes-help-please/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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