Voting

: min(three, six)?
(Example: nine)

The Note You're Voting On

poulou_0 at hotmail dot com
14 years ago
if you are not interested in high or low case sort

<?php
//where
$sortable_array[$k] = $v2;
//put
$sortable_array[$k] = strtolower($v2);

//and where
$sortable_array[$k] = $v;
//put
$sortable_array[$k] = strtolower($v);
?>

<< Back to user notes page

To Top