This is the first PHP coding section
This is
PHP code";
?>
This is the second PHP coding section
This is
more PHP code";
?>
Hello, $name, how are you?\n";
$name = "Joe Bob";
echo "
Oh, so now your name is $name, huh?
\n";
$name = 4.2;
$name = $name * 2;
echo "
That's tricky, now the variable is equal to $name!
\n";
?>
Random number test
50)
{
echo "
The value is big: $value
\n";
} elseif ($value > 25)
{
echo "
The value is medium: $value
\n";
} else
{
echo "
The value is small: $value
\n";
}
?>
";
echo "The last person is $valarray[3]\n ";
?>
the value is $count \n";
$count = $count + 1;
}
?>
This is the body of the main page