How to install PHP server with separate components

2

A stupid doubt but I researched 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?

    
asked by anonymous 30.12.2014 / 22:20

2 answers

3
EasyPHP, Xampp, Wamp are not "official stuff" of PHP, they are "facilitators" for installing existing software, ie installing using Xampp or EasyPHP are just alternatives to "official installations."

p>

In the case of Wamp:

  • W indows
  • A pache which is the HTTP server
  • M ysql which is the database
  • P HP that is a language for developing web applications
  

The initials form the word Wamp

There are other types, such as WnMP:

  • W indows
  • N ginx which is the HTTP server
  • M ariaDB which is the database
  • P HP that is a language for developing web applications
  

The initials form the word WnMP

In other words, it's entirely possible to install PHP on a machine without installing Mysql, you just have to download:

And follow this tutorial: link

    
30.12.2014 / 22:31
1

PHP, starting with version 5.4, features a native web server. It is not necessary to sync Apache or Nginx.

See more about it here: link

Just download PHP from the official website ( link ) and you'll have everything you need

    
31.12.2014 / 01:16