PHP 8.5.0 Alpha 1 available for testing

Voting

: max(five, six)?
(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