If you're using PHP just check the user agent information for the word
iphone like this:

$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
$iphone = false;
if ( strpos( $ua, 'iphone' ) !== false ) {
  $iphone = true;
}

On Nov 22, 4:37 pm, jickpictures <[EMAIL PROTECTED]> wrote:
> I'm wanting to make my site, jickpictures.com, work specifically on
> iphone, in the way that Bank of America automatically recognizes that
> your on an iphone and uses a different style sheet to display things
> differently. How do I go about doing this in the easiest way for me to
> understand?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to iphonewebdev@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to