answersLogoWhite

0


Best Answer

No necessarily, PHP can be used on various other web servers, not just Apache, but Apache is the most popular. MySQL is a stand-alone database engine and is used by a lot of other stuff, not just PHP apps.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is it apache compulsory for php mysql?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a good server for PHP language?

The best server yet for php serving is Apache, as PHP and Apache work closely together. The MySQL community database is a good server for PHP applications, this is why we talk about w/xamp servers, Windows/Linux Apache MySQL PHP servers.


What database does the WAmmp server refer to when it's used with PHP?

WAMP is an abbreviation of "Windows, Apache, MySQL, and PHP", so it uses MySQL database server.


What is the importance in using Apache PHP and MySQL?

*AMP (<OS> Apache Mysql PHP) stacks are incredibly popular, supported, and documented, creating a great environment for a beginner, and very much stable enough for a senior engineer.


What database does the WAMP server refer to when it?

WAMP stands for Windows Apache Mysql PHP. Mysql is the default database in WAMP


What is lamp in php?

LAMP stands for Linux-Apache-MySQL-PHP. In simpler terms it contains everything to build a php application on a linux platform.


How does Apache MySQL and PHP work together?

Let me answer from less 'technicall' point of view. Apache is the HTTP server. It gets the HTTP requests and answers with the HTML code. PHP is used to generate this HTML dynamically on server side. MySQL is used by PHP for getting the data. Once the Apache HTTP server gets the request for the page with php (or php3, php4, phtml or whatever is configured in Apache's config file), it calls PHP interpreter to generate HTML. Then this HTML is returned to the client - internet browser which sent HTTP request. PHP has got an access to MySQL DB via several APIs. This simply means, that you can just call some function in PHP script to select, import update or delete some data in a table of DB. You can also maintain the DB, create, delete new tables a.s.o. There is a lot of functions for that ;)


What might be the causes of errors in PHP?

The main causes of errors in PHP can be the problems occurring from the MYSQL database (if there) or errors from Apache handler. These errors can be prevented by hosting the MYSQL database on a trusted and good server.


What technologies that used to build FaceBook is it php mysql is so what are the rest of the technologies needed?

facebook definatly runs on php (as you can tell by going to www.facebook.com/home.php). Also when you apply for a job to the company mysql knowledge is a must. However as for the platform it runs on that is difficult to say for sure, however i would imagine them to be using a classical LAMP setup (Linux Apache MySQL and PHP) as is very common with php/mySQL sites.


How to solve what if your php installation appears to be missing the mysql extension which is required by wordpress?

Ideal thing to do would be to delete all your installation & install a single WAMP/LAMP server. It combines all the features necessary to run php including windows/linux, apache, mysql & php


What is expansion of xampp?

Xampp (X-os,apache mysql Php Perl) X-OS means in runs in all OS


How do you run php file?

Either you could download latest version of php, mysql & apache server or better you just need to install xampp. Versions of it are available for all OS


Why to use use MYSQL with PHP and not anyother database?

You can connect any DB via PHP if you have database specific database extensions defined. LAMPP stack refer to 'Linux Apache Mysql PHP Perl'. Hence this stack is famous for php development as it include all the needed components for web development. Mysql is preferred mostly because it's extension is added by default in XAMPP or WAMPP stack.