I have urlin the followin format:
http://www.somesite.com/ABCKH
I need to take the final part and analyse. If it is in CAPS and if has 5 alpha chars in it. Something like:
ereg("^[^A-Z]*$", $_GET['whatchamacallit']) && strlen($_GET['whatchamacallit']) != 5) {
FALSE
} else {
TRUE
}
I just do not know hot to capture that last part after domain into a variable...