Greetings!

Might also check to make sure you have :

short_open_tag = On 

in your php.ini file.
This allows the use of <? instead of <?php

OR

re-write your code as :

<table><tr><td><?php echo "test..."; ?></td></tr></table>

If you have .phtml added as a type to be pre-processed, this might be the problem :)

Hope this helps.

Regards,
Thistle

At 11:27 AM 10/10/2002 , Chris Hewitt wrote:
>P I wrote:
>
>>BUT, if I make a phtml page with html source in it, ie:
>><table><tr><td><? echo "test..."; ?></td></tr></table> makes a table
>>without any content (<table><tr><td></td></tr></table>), so it seems
>>apache forgets to wait until the php parser do its job.
>>
>In you AddType line in httpd.conf, have you included ".phtml"?
>
>HTH
>Chris
>
>
>-- 
>PHP Install Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php
> 

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

Reply via email to