Hi all,
Thanx all for your help but I finally found the answer.
To override php.ini settings through a htaccess file you need to use the following syntax:
php_value display_errors "On"
php_value error_reporting "63"
This example will show errors on a server where display_errors is turned off. Of course the Apache server must be set up to allow overriding through htaccess in your web site directory.
There is also the php_flag command. This should also work for the directives which only have a On/Off value. i.e.
php_flag display_errors "On"
Hope this will help others in the future.
Scott