Web Hosting Talk







View Full Version : Forwarding Homepgae to PDA Page


engrkhalid
11-06-2005, 01:42 PM
Hello,,

I use PHP, and recently, I've built a version of my site for PDA devices.
But how to forward the PDA visitors from Homepage to pda/index.php?

Like what Google does then you open "www.google.com" in a PDA device.


Need help, Thanks in advance.

null
11-06-2005, 04:17 PM
I assume that PDA runs Windows CE. If yes then use this code


if (stripos($_SERVER['HTTP_USER_AGENT'], 'Windows CE'))
{
header('Location: pda/index.php');
exit;
}

engrkhalid
11-07-2005, 05:03 AM
Thank you.

engrkhalid
11-07-2005, 06:10 AM
By the way..

Is looking for "Windows CE" enough?
Or shall I look for more keywords like: AvantoGo, Palm, Nokia?

Regards.

dollar
11-07-2005, 06:21 AM
you can find out what headers each of these send, and then do somethign like:


if (stripos($_SERVER['HTTP_USER_AGENT'], 'Windows CE') || stripos($_SERVER['HTTP_USER_AGENT'], 'Palm') || stripos($_SERVER['HTTP_USER_AGENT'], 'Blah blah blah') )
{
header('Location: pda/index.php');
exit;
}

engrkhalid
11-07-2005, 01:27 PM
Thank you all,

That was helpful.