Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. /*** CONNESSIONE AL DATABAS ***/
  3. /*** Autori: Bassi A, Bambi S, Carrassi A ***/
  4.  
  5. // Mi connetto al database
  6. $dbhost='localhost';
  7. $dbuser='root';
  8. $dbpass='BigBlackMama1990';
  9. $dbname='areadiprogetto';
  10.  
  11. $conn=mysql_connect($dbhost,$dbuser,$dbpass);
  12.  
  13. if ($conn==0)
  14. {
  15.     die("Impossibile collegarsi al server MySQL");
  16. }
  17.  
  18. // Mi collego alla tabella
  19. $sel=mysql_select_db($dbname);
  20.  
  21. if($sel==0)
  22.     die("Impossibile selezionare il database $dbname");
  23.  
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement