SonniE's PHP Tutorial
i will be adding to this frequently
php syntax:
<?php
?>
Display Text:
echo "Hello codinghs.COM!";
This Produces:
VariablesCode:Hello codinghs.COM!
$var = "Hello";
$thenumber5 = 5;
Display Text Using Variables
$txt = "This iS Text";
echo $txt;