Voting

: max(eight, seven)?
(Example: nine)

The Note You're Voting On

spectre at hellfish dot NOSPAM dot org
22 years ago
that works nicely, tho it breaks the result-array up if one or more of arrays indexes are deleted before sorting. this one should fix it up:

change:
for ($i = 0; $i < sizeof($array); $i++) {

to:
foreach ($array as $i => $k) {

<< Back to user notes page

To Top