You may need to specify exactly what errors you are talking about but it sounds like the your host has turned the warning errors off. This is done by setting error_reporting in php.ini like below.
error_reporting = E_ALL & ~E_NOTICE.
You can add function error_reporting(); to your script to enable the errors be printed to the screen.