Redirect a PSP Browser
Posted by matthew | Posted in Code Snippets | Posted on 01-12-2009
Tags: PHP, PSP, Sony
0
Need to redirect a PSP browser, easy!
Simply put this code at the top of your page before anything else:
if(preg_match('/.*PSP.+PlayStation.*/', $_SERVER['HTTP_USER_AGENT'])) {
header("location:http://www.mysite.com/psp.php");
}
This ultra-slim code will redirect a PSP browser to a page of your choice. This is very handy if you want PSP users to view a different site or to create a specific page suited for the browser



