Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. if ($resultado->num_rows > 0) {
  2.  
  3. echo "<select class='status' name='id_status' id='queixa' style='float: left'>";
  4. // output data of each row
  5. while ($col = $resultado->fetch_assoc()) {
  6. echo "<option value='" . $col['id_status'] . "'>" . $col['estado'] . "</option>";
  7.  
  8. }
  9.  
  10. echo "</select>";
  11.  
  12. }
  13.  
  14. echo "<a class='btn_ok' href='mail.php?email=" . $row["email"] . "&id_status=" . $col['id_status'] . "'>OK</a>";
  15. }
  16.  
  17. echo "</td></tr></table>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement