Hi,
I would like to know if it's possible to determine if the client is a normal PC browser (IE, Navigator, etc) or if it is a WAP browser. Thanks in advance.
Best regards,
Norberto Henriques
Hi, Anyone that has a clue and that would like to help me? Thanks in advance.
You can do something like this to detect WAP and send them to another page
if (strstr(strtolower($HTTP_ACCEPT), "text/vnd.wap.wml")) { header("Location: http://www.whatever/wap"); exit; }