Dear Friend i have been searching for a system where i can create a PHP script which will help me to detect browser and redirect them example i can detect Mozilla and redirect it to a splash Mozilla page i designed, Internet explorer same thing and Opera same thing Anyone have any Idea on this?
You just need to look at the HTTP_USER_AGENT key in the $_SERVER variable. Alternatively, you may want to look at something like this: http://php.net/manual/en/function.get-browser.php
Alternatively, unless it is critical, design a page that works in all browsers so that you don't have to worry about new browsers and people who spoof their browser's user agent.