Advertisement
Guest User

Untitled

a guest
Jan 7th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. $host = "localhost";
  3. $user = "root";
  4. $password = "";
  5. $db_name = "sportowcy";
  6.  
  7. $con = mysqli_connect($host , $user , $password , $db_name)or die("NIE LACZY");
  8. $prin = mysqli_query($con ,"select * from 'sportowiec'");
  9. $elo = mysqli_fetch_array($prin);
  10. print ($elo);
  11. ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement