PDA

View Full Version : How to run a php script on different browsers?



fourjparty
10-21-2013, 07:51 AM
How to run a php script on different browsers?

anupam27
10-26-2013, 08:18 AM
I dont have that much php knowkedge but i googled and found php curl named software or something helping php pages in opening in different environments...

kevin619
11-12-2013, 07:53 AM
you have to follow this link hope you will get some good info about php script

http://stackoverflow.com/questions/7168180/php-script-not-running-on-browser

milos87popovic
11-14-2013, 07:23 AM
How to run a php script on different browsers?
Please explain your question? All browsers can run PHP script, but you must upload your script to Apache server.

doughharry
11-15-2013, 07:10 AM
Therefore before running PHP files, they should be placed inside the web folder of a web server and then make a request to desired PHP file by typing its URL in the web browser. If you installed a web server in your computer, usually the root of its web folder can be accessed by typing http://localhost in the web browser. So, if you placed a file called hello.php inside its web folder, you can run that file by calling http://localhost/hello.php.
then you run your php code.

stevex
12-24-2014, 02:13 AM
Therefore before running PHP files, they should be placed inside the web folder of a web server and then make a request to desired PHP file by typing its URL in the web browser. If you installed a web server in your computer, usually the root of its web folder can be accessed by typing http://localhost in the web browser. So, if you placed a file called hello.php inside its web folder, you can run that file by calling http://localhost/hello.php.
then you run your php code.

Your information is accurate.