In responce to this:
"It should be noted that both SORT_REGULAR and SORT_STRING appear ot be case sensitive, list words beginning with capitals first.

It would be nice to have an option which isn't case sensitive.
Allen"

To Make a SORT_STRING ignore case, simply sort without any different cases. By use of the strtolower() or strtoupper() functions.

The $arrMerch[$iIndex][1] cell contains a string, of course.

// Create an array that will be sorted, with strtolower() making all the strings lower case.
for ($iIndex = 0; $iIndex < $iAppCount; $iIndex++) {
$arrSort[$iIndex] = strtolower($arrMerch[$iIndex][1]);
}

array_multisort($arrMerch,SORT_ASC,SORT_STRING,$ar rSort,
SORT_ASC,SORT_STRING);

There you go.
----
Manual Page -- [url]http://www.php.net/manual/en/function.array-multisort.php[/url]
Edit Note -- [url]http://master.php.net/manage/user-notes.php?action=edit+33783[/url]
Delete Note -- [url]http://master.php.net/manage/user-notes.php?action=delete+33783&report=yes[/url]
Reject Note -- [url]http://master.php.net/manage/user-notes.php?action=reject+33783&report=yes[/url]