Hello, I've a question regarding the exception handling in PHP 5. In my php script I created a try catch block in order to catch throwing exceptions. The problem is that my try - block starts at the end of a php file, but ends in a different one. This always leads to the following error: "Parse error: syntax error, unexpected $end ". I hope you could tell me how to resolve this problem. Thanks and kind regards Sandro Felicioni e.g.: start top.php ------------- try{ end top.php ----------- start main.php -------------- require_once("top.php"); execute some critical php code }catch(Exception $e){ doSomething(); } end main.php -------------- end main.php ------------ -- GMX startet ShortView.de. Hier findest Du Leute mit Deinen Interessen! Jetzt dabei sein: http://www.shortview.de/?mc=sv_ext_mf@gmx -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php