Hello Black Hat World The Names - Tyler AKA "NinjaMods"
Today i'm posting a little php script i use on a friends Tire shop site that redirects users if they are on a desktop or mobile phone to their own landing page.
To begin make sure you already have have the landing page created.
Then Use...
You can use this little php script i made
it'll redirect users to mobile/index.html if their screen isn't greater than 990 pixels
<script type="text/javascript">
if (screen.width <= 990) {
document.location = "mobile/index.html";
}
</script>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.