View Single Post
  #1 (permalink)  
Old March 31st, 2008, 01:46 PM
theChris theChris is offline
New Member

 
Join Date: Mar 2008
Posts: 14
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 1
theChris is an unknown quantity at this point
Default PHP code displays in browser

Hi, I'm trying out my first simple php snippet, but the code is displaying in the browser instead of executing. Can you see what I'm doing wrong? Here's the code:

PHP Code:
<?php
echo "Hello World";
?>
But the browser ouputs:
Quote:
<?php
echo "Hello World";
?>
What am I doing wrong??