Before using a PHP directive be sure to find it in the PHP manual to see what kind of values it accepts. For error related directives go here:
http://www.php.net/manual/en/ref.errorfunc.php
In this case you want E_ALL as it shows all errors. The following two lines of code are IDENTICAL:
<?php
ini_set('error_reporting', E_ALL);
error_reporting(E_ALL);
?>
But I'm guessing the above won't [by itself] help and that other directives are at play. Maybe not. Check out the display_errors directive in the above manual page, it needs to be on to output PHP errors to the screen. A call to phpinfo() will share with you your settings but for now also stick a ini_set('display_errors', 1); on top of your file. Your host may be logging the errors (instead of outputting to the screen) and if so you may want to just ask them for the log location.