Advertisement
Guest User

Untitled

a guest
Sep 18th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $servername="localhost";
  3. $username="root";
  4. $password="";
  5. $database="samochody";
  6.  
  7. $connect = mysqli_connect($servername, $username, $password, $database);
  8.  
  9. if (!$connect){
  10. die("Nie udało się połączyć z bazą !!!");
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement