|
|
|
#2 | |
|
Banned
Join Date: Aug 2003
Location: Mohawk, New York
Posts: 19,477
|
Quote:
I think this may be the code... Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test</title>
</head>
<body>
<?php
/* cell/pda browser detection */
if (strstr($_SERVER['HTTP_ACCEPT'], 'vnd.wap.xhtml'))
{
echo "You are using a vnd.wap.xhtml WAP browser";
}
else if (strstr($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml'))
{
echo "You are using a vnd.wap.wml WAP browser";
}
else
{
echo "You are using a normal browser";
}
?>
</body>
</html>
|
|
|
|
|
|
|