View Single Post
  #9 (permalink)  
Old 03-03-07, 09:19 PM
job0107's Avatar
job0107 job0107 is offline
Community Liaison
 
Join Date: Dec 2006
Location: Tacoma, Washington USA
Posts: 3,454
Thanks: 0
Thanked 140 Times in 137 Posts
Oh, yes, I neglected to mention one thing... Make sure you enclose your PHP code in PHP tags, like this:
PHP Code:

<?php

echo("Hello"); 
?>
Some people like to take short-cuts with the PHP tags and use them this way:
PHP Code:

<?  

echo("Hello");   
?>
I don't take that short-cut, because it doesn't always work the way you think it should.
__________________
Jerry Broughton

Last edited by job0107; 03-03-07 at 09:22 PM.
Reply With Quote