Siggles Site Admin
Joined: 17 Sep 2007 Posts: 21
|
Posted: Tue Nov 13, 2007 3:01 am Post subject: Basic PHP Tutorial. |
|
|
This is just a basic PHP tutorial.
To code in PHP, you must have a host that has PHP installed or you must have PHP and Apache installed on your CPU.
When coding in PHP, you always want to start with:
and end with
If you want text to appear on the page, use:
| Code: |
<?php
echo "Hello World!";
?>
|
This will output:
Hello World!
Might finish later... |
|