Advertisement
Guest User

Lordicon

a guest
Feb 6th, 2010
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. Error I am getting:
  2. Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server at 'reading initial communication packet', system error: 111
  3.  
  4. Script I am using:
  5. <?
  6. ob_start();
  7. session_start();
  8. header("Cache-control: private");
  9. $db_conn = mysql_connect("IP", "USER", "PASSWORD") or die("unable to connect to the database");
  10.   mysql_select_db("DATABASE", $db_conn) or die("unable to select the database");
  11. $from = 'EMAIL';
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement