[snip]
Is there any way you can use the numerical comparisons < or > to see if
one 
word comes first alphabetically to another ?
what can I use to see if
"oranges" comes after or before "apples" alphabetically for instance.
[/snip]

**mumble grumble**
You should just try dinky questions like this out for yourself...
Try this code:
<?
if ("apples" > "oranges" )
{
 echo "apples";
}else{
 echo "oranges";
}
?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to