That would be useful for someone who can change such things -
many hosts
would not give you access to php.ini, however.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Michael Fesser" <netizen@gmx.de> wrote in message
news:2d61t310ms0j8uqbre0bmshflkc7s943b0@4ax.com...
> .oO(David Powers)
>
>>fbcojman wrote:
>>> I am building a small site powered by at MySQL
database using PHP on the
>>> front
>>> end. I use WAMP server as my local testing
server but having a small
>>> problem.
>>> I made 2 new pages today that do not show any
content when tested.
>>
>>Almost certainly it means you have a parse error in
your PHP code, but
>>display_errors is turned off. Add this to the very
top of your page, and
>>see what error message is produced:
>>
>><?php ini_set('display_errors', '1'); ?>
>
> This should be done in the php.ini (and error_reporting
set to E_ALL|
> E_STRICT). If the script has a parse error, then it
might not get
> executed at all, so the above line won't change
anything.
>
> Micha