On Jan 5, 2008, at 639AM, A.smith wrote:
I'm having a problem getting .phtml files to display in a web browser. I can successfully display a test.php page as per PHP install instructions but
the phtml files show up blank
(in firefox or IE).

A blank page often means that there's an error of some kind, but error reporting is turned off.

Put the following code in the file that's giving you problems to turn on errors, then reload the file in your browser to see what you get:

ini_set('display_errors',1);

Brady

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to