How to install PHP server with separate components

Asked

Viewed 953 times

2

A dumb question but I searched here and found nothing. I already have Mysql running on my computer, how do I install PHP without installing Easyphp, Xampp? Because usually these programs already bring Mysql together. How do I?

2 answers

3


Easyphp, Xampp, Wamp are not "official things" of PHP, they are "facilitators" for the installation of existing software, that is, install using Xampp or Easyphp are only alternatives to "official installations".

In the case of Wamp:

  • Windows
  • ToPache which is the HTTP server
  • Mysql which is the database
  • PHP which is a language for developing web applications

The initials form the word Wamp

There are other types, such as Wnmp:

  • Windows
  • Nginx which is the HTTP server
  • MariaDB which is the database
  • PHP which is a language for developing web applications

The initials form the word Wnmp

In other words, it’s fully possible install PHP on a machine without installing Mysql, just download it:

And follow this tutorial: http://php.net/manual/en/install.windows.apache2.php

  • 1

    Thanks man!!! :)

1

Browser other questions tagged

You are not signed in. Login or sign up in order to post.