Code Snippets Php

$i = 6;
if ($i < 6)
{
echo "Less than 6";
}
else
{
echo "more than 6";
}
?>