ConFoo Montreal 2026: Call for Papers

Voting

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

The Note You're Voting On

jason dot sokolowski at rotork dot com
22 years ago
Something real simple i wrote to sort directory searches by a persons last name.

<?php
for($i=0;$i<$result["count"];$i++)
{

$lastname = $result[$i]["sn"][0];

$lnames["$i"]=$lastname;

}
//for i

@asort($lnames);
?>

<< Back to user notes page

To Top