How to run PHP on Ubuntu
March 21, 2012 in Php
How to run PHP on Ubuntu.
First of all you will need a web-server to host our PHP pages.
In this tutorial I ll use Apache2. You can install Apache2 from the Terminal by using:
sudo apt-get update sudo apt-get install apache2
when the installation is finished, Apache is up and running and you can test that by pointing your web browser at http://localhost/
The default page will come up with a message “it works” and some more info.This html file is located under your local file system in folder /var/www/html/
Now you have to install PHP.
To install PHP and PHP support for Apache, just write the following in console:
Recent Comments