Skip to content

Instantly share code, notes, and snippets.

@zorca
Created October 22, 2016 15:13
Show Gist options
  • Save zorca/40dfccc9cdbb5a0e54697d63904429f8 to your computer and use it in GitHub Desktop.
Save zorca/40dfccc9cdbb5a0e54697d63904429f8 to your computer and use it in GitHub Desktop.
<?php
// First
$var1 = 2;
$var2 = rand(1, 100);
$result = $var1 + $var2;
echo $result;
echo '<br>';
// Second
for ($number; $number<=10; $number++) {
if ($number % 2 == 0) echo $number . ' ';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment