Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,846 answers

573 users

How to check whether user browser is Firefox in PHP

Learn & Practice SQL


84 views
asked Feb 21, 2019 by avibootz
edited Feb 21, 2019 by avibootz

2 Answers

0 votes
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox')) {
   echo 'Mozilla Firefox';
}


/*
run:

Mozilla Firefox

*/

 





answered Feb 21, 2019 by avibootz
edited Feb 21, 2019 by avibootz
0 votes
if (isset($_SERVER['HTTP_USER_AGENT'])) {
    if (strstr($_SERVER['HTTP_USER_AGENT'], 'Firefox')) {
        echo 'Mozilla Firefox';
    }
}
 
 
 
/*
run:
 
Mozilla Firefox
 
*/

 





answered Feb 21, 2019 by avibootz

Related questions

2 answers 124 views
2 answers 125 views
1 answer 70 views
70 views asked Feb 21, 2019 by avibootz
1 answer 97 views
97 views asked Aug 31, 2015 by avibootz
...