How can we get the browser properties using PHP?

Answer Posted / anand wankhede

Just write it as $_SERVER['HTTP_USER_AGENT'].

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is laravel frontend or backend?

545


What is php and sql?

542


What is use of in_array() function in php?

551


How do I install php and apache on windows 10?

524


Write down the code for saving an uploaded file in PHP.

609






What is the use of post in php?

512


Do you know how to get the ip address of the client?

524


What is pdo in php why use?

503


What is class extend in php?

548


Explain me what is x+ mode in fopen() used for?

551


What are soundex() and metaphone() functions in php?

486


Is a number php?

536


Why php is widely used?

555


Which operator is used to combine string values in php?

515


Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.

1520