Posted by bakercad on 06/26/07 18:18
On Jun 26, 2:07 pm, Personne <cpdiv...@gmail.com> wrote:
> <?php
> function h()
> {
> echo 'hello';}
>
> ?>
> BIG
> <? h(); ?>
>
> Result with PHP4.3.10/Apache1.3.33 => BIGBIGhello
> Result with PHP5.2.6/Apache2.2.3 => BIG
>
> with PHP 5.2.6
> hello is not displayed
> why?
> how can I fix this?
>
> Thank you
maybe change
<? h(); ?>
to
<?php h(); ?>
short_open_tag may not be enabled on the PHP5.2.6 install
Navigation:
[Reply to this message]
|