Could anyone please tell me how to run a php file locally on my system.
Currently I am using a server to run files.
I know both php & Apache to be installed.
I need to see out put of this program, for example:

<?php 
$a=5;
$b=10;
$c=$a+$b;
print $c;
?>

Can you please tell how I can run these files of if I need anything more.

thanks in advance.

link|improve this question

is the file .php. Did you put the files in the htdocs directory of apache? How do you access the file, through http://localhost/yourscript.php? – Topener Dec 20 '11 at 18:39
Do you want to run the script on a local Apache server on your computer? Or you prefer to run the script without a web server (i.e. outside a browser, like a normal executable program)? Is your computer a Windows or a Linux machine? – lorenzo-s Dec 20 '11 at 18:39
2  
Install just php and in command line : php -f path/to/file.php – piotrekkr Dec 20 '11 at 18:40
possible duplicate of PHP installation on windows – mario Dec 20 '11 at 18:40
2  
May be worth your time to look in to WAMP (If you're running windows) or LAMP for *nix – Brad Christie Dec 20 '11 at 18:40
show 3 more comments
feedback

3 Answers

up vote 5 down vote accepted

You have to run Apache and browse to your localhost, mostly likely on port 80.

What you really ought to do is install an all-in-one package like XAMPP, it bundles Apache, MySQL PHP, and Perl (if you were so inclined) as well as a few other tools that work with Apache and MySQL - plus it's cross platform (that's what the 'X' in 'XAMPP' stands for).

Once you install XAMPP (and there is an installer, so it shouldn't be hard) open up the control panel for XAMPP and then click the "Start" button next to Apache - note that on applications that require a database, you'll also need to start MySQL (and you'll be able to interface with it through phpMyAdmin). Once you've started Apache, you can browse to http://localhost.

Again, regardless of whether or not you choose XAMPP (which I would recommend), you should just have to start Apache.

link|improve this answer
thanks. let me try and update you. – logan Dec 20 '11 at 19:07
feedback

In short:

  1. Install WAMP

  2. Put this file to C:\wamp\www\ProjectName\filename.php

  3. Go to browser: http://localhost/ProjectName/filename.php

link|improve this answer
short and simple answer...easy to understand and easy to implement.... – vishal_g Dec 20 '11 at 19:02
feedback

If you have apache running, put your file in server folder for html files and then call it from web-browser (Like http://localhost/myfile.php ).

link|improve this answer
it is not working. Apache is running & i placed my sample.php in htdocs then tried, localhost/sample.php but it shows only code. – logan Dec 20 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.