Please answer this simple SPAM challenge: three plus four? (Example: nine)
Note: negatives number.<?php$a = array(-5,-2,3,9);natsort($a);print_r($a);?>Will output:Array ( [1] => -2 [0] => -5 [2] => 3 [3] => 9 )
<< Back to user notes page