Guest User

Untitled

a guest
Jun 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. $pdo = $dbconn->prepare("SELECT u_matricula FROM usuario ORDER BY u_tipo_esp LIMIT 1");
  4. $pdo->execute();
  5. $users = $pdo->fetchAll();
  6. foreach($users as $matriculas)
  7. {
  8. echo '<input type= "text" value"'.$matriculas['u_matricula'].'">';
  9. }
  10. ?>
  11. </select>
  12. </div>
Add Comment
Please, Sign In to add comment