Posted by Aeroz on 06/02/06 15:26
Thank You Very much enabling short tags fixxed my problem
"David Haynes" <david.haynes2@sympatico.ca> wrote in message
news:1zTfg.81249$ip3.3606@fe62.usenetserver.com...
> Aeroz wrote:
>> Im fairly new to the world of PHP i have a webserver setup on my puter
>> and tryin to run some php pages aparently im having some problems with
>> mysql communication.
>>
>> My system is:
>> Win XP
>> Apache 2 (latest release)
>> PHP 5.1.2
>> My SQL 5.0.18
>>
>> The problem is best described in showing what is happening on the website
>> when i access it
>>
>> http://67.68.189.114/aeroz/playing.php
>>
>> here is my php info whick im sure is a major security risk but it only
>> accessable till i get this issue resolved
>> http://67.68.189.114/info.php
>>
>>
>> as far as i can tell im lookin at a config file and and the playlist file
>> i will attach both files in this post
>>
>> i have also tried PHP 4 thinkin it was a compatibility issue but had the
>> same results
>
> Your site has been written using short tags (i.e. <? == <?php and <?= =
> <?php echo) but you do not have short tags enabled in your php.ini file.
>
> The use of short tags is deprecated.
>
> Short-term fix: set short_open_tag = On in your php.in file.
>
> Long-term fix: replace all references to <?= with <?php echo and <? with
> <?php
>
> -david-
>
[Back to original message]
|