PHP basics tutorial
What is a syntax? Laically spoken, the syntax represent a group of rules that every code has to fulfill.
PHP code has to be inside of key words (tags):
<?php
/*.....here you put the code....*/
?>
or short
<?
/*.....here you put the code....*/
?>
Each code order, definition variable has to be ended with ";".