Quote:
Originally Posted by V_RocKs
$born() => $sucker == $minute++;
|
Fail.
Code:
<?php
/* This script determines the number of suckers born since epoch time. */
$suckers = floor(time()/60); //we round down as anything less then 60 seconds is not a complete sucker.
echo 'Suckers: '.$suckers;
?>