I am interested in having a site that takes the initial incoming request from a user and read the http header to see if they are a html or wap browser user. Then do a server side redirect to the appropriate branch of the site.
Can PHP handle this????
$gethttpall = getenv(HTTP_ACCEPT);
if (ereg ("wml", $gethttpall)){ require ("./indexwml.php"); }
Give that a try and let me know how it goes...
Matt Wade codewalkers.com