Quote:
|
Originally Posted by DJMaze
TIP: Don't use <? but use the correct coding <?php
Open php.ini and change the short_open_tag directive to Off and you will understand.
Code:
short_open_tag = Off
Don't use $PHP_SELF, instead use $_SERVER['SCRIPT_NAME'] or basename(__FILE__)
|
I can understand not using short tags, but can you explain why $_SERVER['PHP_SELF'] shouldn't be used?