Well heres a short php tutorial.
Please make sure your host is php enabled. IF you do not know email your provider and ask.
Save all php files with a .php extension.
Php starts out with
and ends with
Ok lets make some basic code to display something on there screen.
We start with our,
Code:
<?
echo "Hello World";
?>
We now see you put echo this is telling the browser your going to output text there various different commands to achive this but echo is what ill use. When ending a line in php you must have ;.
We now save it as hello.php, open it in a browser and you will see Hello World.
You've sucessfully made you first ever php script.