Guest User

Untitled

a guest
May 20th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <form action="index.php" method="post">
  2. <select>
  3. <?php
  4. while($bla = mysql_fetch_object($query))
  5. {
  6. echo '<option>'.$bla->Vorname.' ' .$bla->Nachname.'</option>';
  7. }
  8. ?>
  9. </select>
  10. <input type="submit" name="send">
  11. </form>
Add Comment
Please, Sign In to add comment