Skip to content

Instantly share code, notes, and snippets.

@radheymkumar
Created April 14, 2020 06:54
Show Gist options
  • Save radheymkumar/44e08f0c1c25ff85af52a739eef6f8da to your computer and use it in GitHub Desktop.
Save radheymkumar/44e08f0c1c25ff85af52a739eef6f8da to your computer and use it in GitHub Desktop.
// Get all even no 1 to 100
<?php
$i;
for($i=1;$i<=100;$i++)
{
if($i%2==0)
{
echo $i."<br>";
}
}
?>
-------------------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment