[PHP-DB] Help with displaying rest of page after MySQL error

2001-03-16 Thread Chris Vargas
This has to be a basic question but I can't find it answered anywhere; I'm probably not searching for the right words or something. I have a page that inserts some MySQL search results in the middle of the page. My web hosting provider's MySQL uptime is spotty. I'd like the rest of the page to

Re: [PHP-DB] Help with displaying rest of page after MySQL error

2001-03-16 Thread Stuart J. Browne
My first line of PHP code (embedded in HTML) has: $db = mysql_connect("x","y","z") or die("saysomethinghere"); If I have a connection problem, it does print the "die" message and the connection error, but it also stops the page right there: no more HTML is displayed. Well, you've