Advertisement
Guest User

connection

a guest
Dec 30th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. # FileName="Connection_php_mysql.htm"
  3. # Type="MYSQL"
  4. # HTTP="true"
  5. $hostname_Eventos = "localhost";
  6. $database_Eventos = "eventos";
  7. $username_Eventos = "root";
  8. $password_Eventos = "";
  9. $Eventos = mysql_pconnect($hostname_Eventos, $username_Eventos, $password_Eventos) or trigger_error(mysql_error(),E_USER_ERROR);
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement