Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect mobile device and get user agent info send and save that information to database on server, only once?

Is there any script to check user agent then send and save that information to database on server?

I'm making mobile website with 2 versions like m.facebook.com and touch.facebook.com and I want to redirect to different mobiles. and I use WURFL device detection.

So for example m.html5version.com should be delivered to all HTML5 supported devices and m.mobileversion.com should deliver to all other mobiles.

So i need a way to detect device and browser 1st time using any server-side or client-side method. when any user will open the website first time on device then an script should run once it should collect the information about device and browser and should save the information in my existing WURFL database , so next time when any user will come from same device then he will redirect to touch or mobile version of website depending on device.

So only 1st time on 1st device I want to detect device and save the info.

Is there any way to do this?

For example

Android 1.6 doesn't have HTML5 support and still in use. So i want to redirect all Android 1.6 devices to m.mobileversion.com not to touch.mobileversion.com

And in touch version of website I'm using HTML 5 tags like <header>, <footer>, <nav> etc which is not supported Android 1.6. So i want to detect the first device who will access the website from Android 1.6 device and because HTML5 is not supported in 1.6 so user agent should be saved in my database then I when next time any user will open the website in 1.6 it will redirect to lo-fi mobile version automatically, no detection should be needed 2nd time for any device.

like image 223
Jitendra Vyas Avatar asked May 21 '11 11:05

Jitendra Vyas


People also ask

What is the best way to detect a mobile device?

In summary, we recommend looking for the string “Mobi” anywhere in the User Agent to detect a mobile device. Like this: if (/Mobi/. test(navigator.

What is Mobile device detection?

Device Detection is technology that identifies what type of mobile devices are accessing an organization's website. That organization can run device detection in real time, or run it as post-processing data analysis.

How can detect mobile device in asp net?

In ASP.NET, you can easily detect the mobile device request using Request. Browser. IsMobileDevice property and Request. UserAgent .


2 Answers

see below link, this will perfectly suitable for your need

http://detectmobilebrowser.com

below is one more script :

http://detectmobilebrowsers.mobi

like image 145
diEcho Avatar answered Sep 23 '22 06:09

diEcho


You might want to look into jQuery's take on this, since it's interesting.

In addition to detecting the browser, they detect browser features:

http://api.jquery.com/jQuery.browser/

http://api.jquery.com/jQuery.support/

Also, keep in mind that some mobile users don't want to be redirected to the mobile-optimized device. I, for one, positively hate it when a site detects my iPad as a mobile device and sends me (without any possibility to override it) to a sloppy mobile site that I wouldn't even want to browse with an iPhone.

iOS and Android devices, in general, will happily work with the standard site if it's coded properly. And other mobile phones are quickly dying.

like image 37
Denis de Bernardy Avatar answered Sep 24 '22 06:09

Denis de Bernardy