Detect the browser resolution by php and js Wednesday, January 22, 2014 Code: if(!isset($_GET['r'])) { echo ""; } else { // Code to be displayed if resolutoin is detected if(isset($_GET['width']) && isset($_GET['Height'])) { // Resolution detected } else { // Resolution not detected } } ?> Labels: PHP
Detect the browser resolution by php and js Wednesday, January 22, 2014 Code: if(!isset($_GET['r'])) { echo ""; } else { // Code to be displayed if resolutoin is detected if(isset($_GET['width']) && isset($_GET['Height'])) { // Resolution detected } else { // Resolution not detected } } ?> Labels: PHP
Post a Comment