topical media & game development

talk show tell print

basic-php-09-snippet03.php / php



  <?php
  //beginning of page
  echo "Beginning";
  
  //we are going to make a call to
  //a function that doesn't exist
  //this will generate an E_ERROR
  //and will halt script execution
  //after the call of the function
  fatalerror();
  
  //end of page
  echo "End";
  //won't be output due to the fatal error
  ?>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.