Just to see a summary of the PHP 01/02, with some addons, read carefully :
PHP Code:
<?php
echo 'Hello my name is <font color="blue">Aqua</font>' ;
echo 'When I wrote this tutorial we were on September,
the 9nd month of the year, I\'m happy';
$thismonth='9';
$start=1;
while($start<$thismonth)
{
echo $thismonth.' was a good month<br>';
$start++;
}
echo 'what will be the end of this month?<br><br>';
if ($thismonth=='12')
{
echo 'The New Year will come !';
}else{
$monthtoend=12-$thismonth;
echo "We have to wait again '.$monthtoend.' month';
//Be careful another if under the first
if($monthtoend>1){echo 's';}
echo '<br><br>';
}?>
<br>This is the end of the code but i can write again in HTML
or write another php code !
Now I will do 5 errors on the next code, who's the same as the first, find them quickly !

and try to understand why.
PHP Code:
<?php
echo 'Hello my name is <font color="blue">Aqua</font>' ;
echo 'When I wrote this tutorial we were on September,
the 9nd month of the year, I\'m happy'
$thismonth='9';
start=1;
while($start<$thismonth)
{
echo $thismonth.' was a good month<br>';
$start++;
}
echo 'what will be the end of this month?<br><br>';
if ($thismonth='12')
{
echo 'The New Year will come !';
}else{
$monthtoend=12-$thismonth;
echo "We have to wait again '.$monthtend.' month';
//Be careful another if under the first
if($monthtoend>1){echo 's';}
echo '<br><br>';
?>
<br>This is the end of the code but i can write again in HTML
or write another php code !