Advertisement
H4nk

Untitled

Sep 28th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <select>
  6.     <option>Select employ</option>
  7.     <?php
  8.     mysql_connect('localhost','user','pass');
  9.     mysql_select_db('employ');
  10.     $query="select id, name from employ order by name asc";
  11.     $result=mysql_query($query);
  12.     while(list($id, $name)=mysql_fetch_row($result)) {
  13.         echo "<option value=\"".$id."\">".$name."</option>";
  14.     }
  15.     ?>
  16. </select>
  17. <div></div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement