Showing posts with label print odd numbers in php. Show all posts
Showing posts with label print odd numbers in php. Show all posts

Saturday, 29 June 2013

print odd numbers in php

<html>
<head>
<title></title>
</head>
<body>
<?php
function odd()
{
for($i=0;$i<=100;$i++)
{
if($i%2!=0) // or if(i%2==1)
{
echo $i."<br/>";
}
}
}
odd();
?>
</body>
</html>