Created
April 14, 2020 06:54
-
-
Save radheymkumar/44e08f0c1c25ff85af52a739eef6f8da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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