View Single Post
  #2  
Old 10th September 2009, 19:14
ferdis's Avatar
ferdis ferdis is offline
Senior Member
 
Join Date: Jul 2009
P2P
Posts: 50
Default
If your code looks to be ok, I have found that this is often caused by the use of Short Open tags in PHP.

The full tag is :
Quote:
<?php
but the short open tag can be used as well.
Quote:
<?
However, you must allow short open tags in your PHP.INI file. Look for the SHORT_OPEN_TAG directive in your PHP.INI file and set it to "1"

I hope this helps.
Reply With Quote