Quote of the Day:
“Learn from yesterday, live for today, hope for tomorrow.”
~Albert Einstein

Syntax Highlighter Test

February 8th, 2010 admin No comments

Just testing the Syntax Highlighter

<?php
function ordinal($cdnl){
    $test_c = abs($cdnl) % 10;
    $ext = ((abs($cdnl) %100 < 21 && abs($cdnl) %100 > 4) ? 'th'
            : (($test_c < 4) ? ($test_c < 3) ? ($test_c < 2) ? ($test_c < 1)
            ? 'th' : 'st' : 'nd' : 'rd' : 'th'));
    return $cdnl.$ext;
}
for($i=1;$i<100;$i++){
    echo ordinal($i).'<br>';
}
?>

Works

Categories: News Tags: , , , ,

Site is Up!

February 8th, 2010 admin No comments

Our site is up again but we are making some major changes to stay tuned

Categories: News Tags: , ,