This article was co-authored by wikiHow staff writer, Darlene Antonelli, MA. Darlene has been writing and editing tech content at wikiHow since 2019. She previously worked for AppleCare, served as a writing tutor, volunteered in IT at an animal rescue, and taught as an adjunct professor for EN101 and EN102. Darlene has completed Coursera courses on technology, writing, and language. She holds both a BA (2011) and an MA (2012) from Rowan University in Writing, with a focus on workplace communication. With her extensive experience, academic background, and ongoing learning, Darlene has become the go-to grammar expert for her friends and family, as well as a skilled wordsmith for anyone in need.
This article has been viewed 79,582 times.
Learn more...
This wikiHow will teach you how to run a PHP script in your web browser using a free web server called MAMP. Unlike a regular HTML file, you can't just double-click a PHP file to run a script in your browser. Web servers like MAMP will translate your code to something that can be interpreted appropriately by any web browser on your computer.
A Quick Guide to Running PHP Files
- Download and open MAMP.
- Click “Preferences,” and make sure the defaults are set correctly.
- Map to the folder that contains the PHP file and click “OK.”
- Click “Start Servers” and open your browser.
- Navigate to “localhost:8888” and click the PHP file to run the script.
Steps
-
Go to https://www.mamp.info/en/downloads. MAMP is a free, local server environment that you'll need to use to see PHP in your web browser.
-
Click the download link for your operating system. If you're using a Windows PC, you'll run the downloaded file, then follow the installer wizard install MAMP. If you're using a Mac, you'll run the downloaded file, then drag-and-drop the MAMP file icon to your Applications folder.Advertisement
-
Open MAMP. You'll find this program in your Start Menu or Applications folder in Finder once it's installed.
-
Click Preferences. This grey gear icon is on the left side of the window that opens when you launch MAMP.
-
Check that all the defaults are set correctly. Click through the tabs on the top and check to make sure the information is listed similarly so your server works.
- In the Start/Stop tab, make sure "Start Servers" and "Open WebStart Page" are checked under "When starting MAMP." "Stop servers" should be selected under "When quitting MAMP."[1]
- On the Ports tab, enter 8888 in the text field next to "Apache Port," "Nginx Port," and 8889 in the text field next to "MySQL Port."[2]
- On the PHP tab, select "7.1.1" if it's not already selected.
- On the Web Server tab, select "Apache" if it's not already selected.
-
Map to your folder that contains the PHP file. You can have multiple PHP files in that folder, but make sure you map a folder instead of a file by dragging and dropping the folder from your file browser.[3]
- For example, you can open your file browser and navigate to your PHP file, navigate one folder back, then drag-and-drop it in the open window. You'll have MAMP set to the folder that your PHP file is inside, not the file ending in .PHP.
-
Click OK to apply your changes to preferences before continuing. This might take about 20 seconds.[4]
-
Click Start Servers. This power icon button is toward the right side of the window that opens when you launch MAMP. Enter your computer password and username when prompted to continue.
-
Open your browser. You can use any browser to preview your PHP file.
-
Navigate to "localhost:8888" in your browser's address bar. The address bar is where you normally see "https://www." To do this, type "localhost:8888" and press ↵ Enter (Windows) or ⏎ Return (Mac). You'll see a directory of your PHP files displayed on the page.
-
Click the PHP file to run the script in your browser. Your PHP file now run and display its output in the browser window.
Expert Q&A
Tips
References
About This Article
1. Download MAMP at https://www.mamp.info/en/downloads/.
2. Open MAMP.
3. Click Preferences.
4. Check that all the defaults are set correctly.
5. Map to your folder that contains the PHP file.
6. Click OK to apply your changes to preferences before continuing.
7. Click Start Servers.
8. Open your browser.
9. Type "localhost:8888" in your browser's address bar.
10. Press Enter or Return on your keyboard.
11. Click the PHP file to view it.