Project Euler Solutions by Ross Marks

<?php
/*****************************
 * ProjectEuler - Problem 6
 * By Ross Marks
 *****************************
 * 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.
 *
 * What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20?
 ****************************/

$awns 0;

for(
$no 1$no 0$no++){
    
$potential true;
    for(
$i 1$i <= 20$i++){
        if(
$no $i != ){ $potential false; } 
    }
    if(
$potential == true){
        
$awns $no;
        break;
    }
}
echo 
"Awnser: $awns";

?>