Redirect From Site Opened From an iPhone or iPad

I’m not sure if this would be PHP or Flash-based:

How would one develop on their Flash web page a redirect script to the website’s Facebook profile if the site was opened from an iPhone or an iPad?

http://search.sitepoint.com/?q=iphone+redirect&submit=Search&refinements[forums]=1

Thanks guys! I looked at both and will try to figure out which will work best for the site!

if(stripos($_SERVER['HTTP_USER_AGENT'], 'iPhone') > -1) {
  return true;
} else {
  return false;
}

Paraphrased/coded from here: http://www.hand-interactive.com/resources/detect-mobile-php.htm

in php its simple with header(“location : DesiredPageURL”);