Are You Online?A very Simple tutorial.
This is how to make your php to work.
Just Copy and paste the code below
<?php
//Assign a String variable
$variable = "Are You Online ?";
//Iterate and assign a variable
for ($x=1; $x <= 10; $x++) {
$output .= $x . " " . $variable;
}
echo $output;
?>