Enter your search terms
Submit search form
my-Tool.com: Internet Codes - Investigate various codes used in internet. - User Agent
IP Address
MaximaPHP
Regexp Tester
Mathematics
String and Text
Word Domain
Games
Code Tester
Internet Codes
Networking
Date and Time
Be Wise Bitwise
Ranqueen
Q & A
About me
Forum
Open Source Facts
AdManner Free
Classified Ads
Indonesian
Japanese
HTML Encoder
Language
User Agent
URL Encoder
Country
HTML Entities
User Agent
Finds out browser information and its capabilities from user agent.
Enter user agent:
eg. Mozilla/4.0 (compatible; MSIE 4.0; MSN 2.5; Windows 95)
Most of the visitors who used this tool also used
Source
(9.1%),
Source
(9.1%),
真理を示す
(9.1%)
Source code of this tool is:
<?php /****************************************************************** * * UserAgent, Finds out browser information and its capabilities from user agent. * Copyright (C) 2006, Bowo Prasetyo * * http://www.my-tool.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation below, * * http://www.gnu.org/licenses/gpl.html#TOC1 * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * *****************************************************************/ require_once('get_browser_local.php'); unset($query); if (isset($_POST['query'])) $query = trim($_POST['query']); else if(isset($_GET['query'])) $query = trim($_GET['query']); ?> <script type="text/javascript"> google_ad_client = "pub-6269511881695171";ngoogle_alternate_ad_url = "http://www.my-tool.com/a120_90.php"; google_ad_width = 728; google_ad_height = 15; google_ad_format = "728x15_0ads_al_s"; google_ad_channel = ""; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "A9501B"; google_color_text = "000000"; google_color_url = "008000"; </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><br /><br /> Enter user agent: <form method="POST" action=""><input type="text" name="query" value="<?php echo $query ?>" size="60"><input type="submit"><br><span class="eg">eg. Mozilla/4.0 (compatible; MSIE 4.0; MSN 2.5; Windows 95)</span></form> <br><br> <?php if (isset($query)) { $browser = get_browser_local($query); echo "Information on '$query' ..<br><table>"; foreach ($browser as $key=>$value) echo "<tr><td>$key</td><td>:</td><td>$value</td></tr>"; echo "</table>"; } ?>
Source code of 'get_browser_local.php' is available at
PHP standalone get_browser() for Browscap1
©2006 my-Tool.com