Stopping Page Execution : Exit « Language Basics « PHP






Stopping Page Execution


<?php
     $db_conn = mysql_connect ("imaginaryhost", "java2s", "password");
   
     // If no db connection, exit script
     if(!$db_conn)
     {
          print("<b>I could not connect to the database! :(</b><br />");
          print("This script will now exit<br />");
          exit;
     }
   
     mysql_close($db_conn);
?>
           
       








Related examples in the same category