View Single Post
Old 06-22-2009, 01:09 PM   #2 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
Wildhoney is on a distinguished road
Default

Experts? We is experts!

It may be the case that your PHP is configured to not support short PHP tags -- the <? ones. The standard PHP tag is <?php, however, many people will still add <? to their code thinking that is the standard.

Try the following 2 lines of code and see what occurs:

php Code:
<?php echo 'Does this get displayed as PHP or HTML?'; ?>
<? echo 'Does this get displayed as PHP or HTML?'; ?>
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote