Reputation: 13682
All,
I'm moving a PHP project from a Windows machine where I was using WampServer to a MacBook where I'm running MAMP.
My question is, where should I copy my php files on the Mac?
Upvotes: 0
Views: 854
Reputation: 26
The webroot for MAMP is /Applications/MAMP/htdocs/
So try putting all your php files there and if you have MAMP turned on, you should be able to point your browser to http://localhost
and see them.
Upvotes: 1