Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged browser
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
« Prev 1 Next »
This is my simple image resizer on the fly thing.
-- WARNING --
Resizing and showing images on the fly could potentially kill your server or make the website slow.
Ideally, this should save the resized image in a cache. However, more often th...
0
1203
posted 11 years ago by brownrl
Helps to find out browser version and type your website visitor is using.
0
919
posted 11 years ago by apphp-snippets
Detect and echo browser version including differentiating between Chrome and Safari.
3
1052
posted 14 years ago by vagrantradio
Place in your functions.php file and call it in your theme like this:
<?php>
1
1141
posted 14 years ago by afj176
Sometimes you just need to mask a script or reject a user from a page this can be done effortlessly using a single line of code. Header location will allow you to redirect a user quickly and without them having any control over the action.
A good...
1
756
posted 15 years ago by scopefragger
Just provide $availableLanguages as an array('en', 'de', 'es')
5
1706
posted 15 years ago by ping_ch
This handy little script will allow you to detect whether or not a user is running FireFox as their browser.
0
738
posted 15 years ago by aristoworks
echo ( browser_detection( 'number' ) .''.
browser_detection( 'browser' ) .''.
browser_detection( 'os' ) .''.
browser_detection( 'os_number' ) );
Outputs (browser version, browser, os, os number):
1.5
moz
nt
5.1
if ( ( browser_de...
2
1121
posted 17 years ago by llbbl
Heres how to use
print_r(browser_detection('full'));
We can also use this script
print "IP: ". $_SERVER['REMOTE_ADDR'].""; ### IP ADDRESS ##
print "Browser:" . $_SERVER["HTTP_USER_AGENT"].""; ## Browser
print "OS: ". $_ENV["OS"]; ### OS
8
950
posted 18 years ago by mail_json
« Prev 1 Next »