Page Error"; echo "Errors have occurred while executing this page. Contact the "; echo "administrator to report errors

"; echo "Information Generated

"; echo "Error Type: $error_type
"; echo "Error Message: $error_message
"; echo "Error Filename: $error_file
"; echo "Error Line: $error_line"; } //set the error handler to be used set_error_handler("handler"); //set string with "Wrox" spelled wrong $string_variable = "Worx books are great!"; //try to use str_replace to replace Worx with Wrox //this will generate an E_WARNING //because of wrong parameter count str_replace("Worx", "Wrox"); ?>