im after one kinda quickly does anyone know of where i can find or could so me an example ?
kthnx
im after one kinda quickly does anyone know of where i can find or could so me an example ?
kthnx
Not sure what that means...
I don't get you...
If you can't connect to the database it'll time out your script and exit?
If so use the die() function:
..
..
$connect_db = mysql_connect ("<mysql server>", "<username>", "<password>");
if (!$connect_db) die ("Couldn't connect to database");
..
..
If not we ned details.
-J