A basic tutorial on building websites with PHP
|
How to make it work
1. FTP your webfolder to your website.
a. You should see the most boring webpage in the whole wide world, saying Hello World
<HTML>
<HEAD> <TITLE> This is my Page Title </TITLE> </HEAD> <BODY> <P>Hello World</P> </BODY> </HTML> There is no PHP code because the PHP has done it's job, it has created your webpage for you! Where to from here? |