Advertisement
jumpy83

Visualizzazione dati profilo

Feb 9th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <div class="col-xs-12 col-md-6 field-group">
  2. <label for="nome">Nome</label>
  3. <input type="text" name="form-nome"
  4. value="<?php
  5. $sql = mysql_query("SELECT Nome FROM utenti WHERE Username = '".$_SESSION['Username']."' LIMIT 1");
  6. while($dati = mysql_fetch_object($sql))
  7. {
  8. echo $dati['Nome'];
  9. }
  10. ?> "
  11. class="form-control field" disabled />
  12. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement