Advertisement
Guest User

miszor dla ciebie

a guest
Nov 9th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. <?php
  3. $host="localhost";
  4. $user="root";
  5. $pass="";
  6. $db="sportowcy";
  7. $conn=mysqli_connect($host, $user, $pass, $db);
  8. if(!$conn){
  9. die("błąd połączenia z bazą danych");
  10. }
  11.  
  12. mysqli_close($conn);
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement