Guest mmsbunny Posted January 1, 2003 Report Posted January 1, 2003 Could someone please visit http://mmsbunny.com/det.php using their SPV and NOT their PC. I'm trying to get the full http_agent details of the SPV. I've asked in uk.telecom.mobile and all I get is people visiting using their PC - numpties! Don't worry - no harm can come to your phone. Cheers Jim PS Will post result.
Guest NXNM Posted January 1, 2003 Report Posted January 1, 2003 Mozilla/2.0 (Compatible; MSIE 3.02; Windows CE; Smartphone; 176x220)
Guest mmsbunny Posted January 1, 2003 Report Posted January 1, 2003 MAGIC! Just what I wanted! Cheers Jim
Guest Firaas Posted January 12, 2003 Report Posted January 12, 2003 Seems an almost relevant topic, wrote this code last month in php in case anyone wants to use it, to redirect SPV users to a second URL (Red is what the SPV receives): <? list($browser,$browser2,$os,$smartphone) = split(';',$HTTP_USER_AGENT); $smartphone = ltrim($smartphone); if ($smartphone == "Smartphone") { echo ""; } else { ?> NORMAL CODE GOES HERE <? }; ?> Or, if you want a site for SPV and PC without using URL forwarding: <? list($browser,$browser2,$os,$smartphone) = split(';',$HTTP_USER_AGENT); $smartphone = ltrim($smartphone); if ($smartphone == "Smartphone") { <? SPV CODE GOES HERE ?> } else { ?> NORMAL CODE GOES HERE <? }; ?> and of course if you want to include another PHP page upon SPV request: <? list($browser,$browser2,$os,$smartphone) = split(';',$HTTP_USER_AGENT); $smartphone = ltrim($smartphone); if ($smartphone == "Smartphone") { include "SPV.php"; } else { ?> NORMAL CODE GOES HERE <? }; ?>
Guest Paul [MVP] Posted January 12, 2003 Report Posted January 12, 2003 Might be using that, cheers :D P
Guest weswes19 Posted January 21, 2003 Report Posted January 21, 2003 An Intelligent SPV owner surly they dont go together, sorry guys bad joke
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now