Posted by David Haynes on 06/02/06 09:30
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-
Navigation:
[Reply to this message]
|