2016-03-31 13 views
0

Wie Radio Button in den Status zu setzen, 2 Radio-Buttons (genehmigt und abgelehnt) und das Kontrollkästchen Radio wird in der Datenbank sowie unter Statusfeld gespeichert werden. enter image description hereWie Radio-Button in der Ausgabetabelle setzen?

Dies ist meine Codes .. Patienten [6] der Status

$sql = "select patientid, firstname, lastname, gender, patienttype, philhealth, status from patients where lastname LIKE '%" . $_POST["key"] . "%' or philhealth LIKE '%" . $_POST["key"] . "%' "; 
     $result = mysql_query($sql, $connection); 
     $rownum = 0; 
     $bgcolor = ""; 


     while($patient = mysql_fetch_array($result)) 
     { 
      $rownum += 1; 
      if($rownum == 2) 
      { 
       $bgcolor = "#FFF"; 
       $rownum = 0; 
      } 
      else 
      { $bgcolor = "#f9f9f9"; } 
      $approved_checked = $patient[6] == 'Approved' ? 'checked' : ''; 
      echo " 
      <tr id='" . $patient[0] . "' style='background: " . $bgcolor . "' onclick='openphilhealthapproval() '> 
        <td id='td27_cell1' style='height: 25px;'>" . $patient[5] . " </td> 
        <td id='td27_cell2' style='height: 25px;'>" . $patient[0] . "</td> 
        <td id='td27_cell3' style='height: 25px;'>" . $patient[1] . " " . $patient[2] . "</td> 
        <td id='td27_cell4' style='height: 25px;'>" . $patient[3] . "</td> 
        <td id='td27_cell5' style='height: 25px;'>" . $patient[4] . "</td> 
        <td id='td27_cell6' style='height: 25px;'>" . $patient[6] . "</td> 

       </tr> 
      "; 
     } 

Antwort

0

Sie den Inhalt dieses TD Element in Ihren Status TD Element setzen sollte. Außerdem müssen Sie die Zeichen durch die PatientenID ersetzen, wenn Sie Ihr HTML erstellen. Sie können das Arbeitsbeispiel here sehen.

<td> 
     <input type="radio" name="statusradio***patientID***" value="approved" id="approvedradio***patientID***"/> 
     <label for="approvedradio***patientID***">approved</label> 
     <input type="radio" name="statusradio***patientID***" value="disapproved" id="disapprovedradio***patientID***"/> 
     <label for="disapprovedradio***patientID***">disapproved</label> 
</td>