What is the PHP and MySQL ?

  • Thread starter Thread starter Naresh S
  • Start date Start date
N

Naresh S

Guest
Hi friends
What is the PHP and MySQL ?
How it will use?
I would like to create one home website I have idea about IIS,DNS, Apache webservers .
Please help me
 
PHP is a server-side scripting language for creating dynamic Web pages. You create pages with PHP and HTML. When a visitor opens the page, the server processes the PHP commands and then sends the results to the visitor's browser, just as with ASP or ColdFusion. Unlike ASP or ColdFusion, however, PHP is Open Source and cross-platform. PHP runs on Windows NT and many Unix versions, and it can be built as an Apache module and as a binary that can run as a CGI. When built as an Apache module, PHP is especially lightweight and speedy. Without any process creation overhead, it can return results quickly, but it doesn't require the tuning of mod_perl to keep your server's memory image small.



MySQL is the world's most popular Open Source Database and is available on all our accounts. You can connect to MySQL with PHP and Perl
 
PHP - is a scripting language originally designed for producing dynamic web pages. It has evolved to include a command line interface capability and can be used in standalone graphical applications.
PHP is a widely-used general-purpose scripting language that is especially suited for web development and can be embedded into HTML. It generally runs on a web server, taking PHP code as its input and creating web pages as output. It can be deployed on most web servers and on almost every operating system and platform free of charge.PHP is installed on more than 20 million websites and 1 million web servers

MySQL - is a relational database management system (RDBMS)
which has more than 11 million installations.The program runs as a server providing multi-user access to a number of databases.

MySQL is popular for web applications and acts as the database component of the LAMP, BAMP, MAMP, SAMP, and WAMP platforms (Linux/BSD/Mac/(Open)Solaris/Windows-Apache-MySQL-PHP/Perl/Python), and for open-source bug tracking tools like Bugzilla. Its popularity for use with web applications is closely tied to the popularity of PHP, which is often combined with MySQL. Several high-traffic web sites (including Flickr, Facebook, Wikipedia, Google, Nokia and YouTube) use MySQL for its data storage and logging of user data.
 
Back
Top