What do I do to get PHP working!?

oxide2007

New Member
Messages
1
Reaction score
0
Points
0
I am trying to get any PHP/MYSQL to work, unfortunately I can't even seem to get a simple Echo or Print function to work.

Code:
<php>
   echo "Hello";
   print("Why doesn't this work?")
</php>

thats the sort of thing I have been trying to do, nothing seems to work. Thanks.
 

kajasweb

New Member
Messages
1,723
Reaction score
0
Points
0
The code should be
PHP:
<?php
   echo "Hello";
   print("Why doesn't this work?");
?>
 
Last edited:

diabolo

Community Advocate
Community Support
Messages
1,682
Reaction score
32
Points
48
also make sure your file is saved under .php extension
 
Top