Jump to content

Installing PHP and MySQL?


eduard

Recommended Posts

it should. that's what it stands for, so i believe that is the default installation, unless there were options for installing certain components.

Link to comment
Share on other sites

it should. that's what it stands for, so i believe that is the default installation, unless there were options for installing certain components.
Thanks! (you can add to your quote: and chileans!)
Link to comment
Share on other sites

In your web browser type in localhost. If an error page comes up you then need to start up MAMP this can be done by looking for MAMP in your applications.When the server is running MySQL and PHP should be running too as they are the M & P in MAMP. To test you can go to localhost/phpmyadmin in your browser. If MySQL is running no errors will come up. If you want to test your PHP setup, create a file called info.php (or anything *.php) and inside it write:

<?phpecho phpinfo();?>

Then go to localhost/filename.php and if PHP is working it should display your PHP settings.Hope that helps.

Link to comment
Share on other sites

In your web browser type in localhost. If an error page comes up you then need to start up MAMP this can be done by looking for MAMP in your applications.When the server is running MySQL and PHP should be running too as they are the M & P in MAMP. To test you can go to localhost/phpmyadmin in your browser. If MySQL is running no errors will come up. If you want to test your PHP setup, create a file called info.php (or anything *.php) and inside it write:
<?phpecho phpinfo();?>

Then go to localhost/filename.php and if PHP is working it should display your PHP settings.Hope that helps.

Thanks!
Link to comment
Share on other sites

In your web browser type in localhost. If an error page comes up you then need to start up MAMP this can be done by looking for MAMP in your applications.When the server is running MySQL and PHP should be running too as they are the M & P in MAMP. To test you can go to localhost/phpmyadmin in your browser. If MySQL is running no errors will come up. If you want to test your PHP setup, create a file called info.php (or anything *.php) and inside it write:
<?phpecho phpinfo();?>

Then go to localhost/filename.php and if PHP is working it should display your PHP settings.Hope that helps.

If you refer to this: what is the local host?
Link to comment
Share on other sites

"localhost" is a name which always points to the computer you're on. It's a reserved name for the local server on that machine. It also has an IP address associated, the IP 127.0.0.1 will also always point to the same computer you're on.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...