Jtjohnston <[EMAIL PROTECTED]> wrote: > Where/How do I start in building a new array? ".=" doesn't work: > > $authors .= explode(";", $mydata->KW);
'.=' doesn't work because that does a string append. you just want: $authors = explode(";", $mydata->KW); then you can sort the array using sort(). http://php.net/sort jim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php