what-is-php

What is PHP? | PHP Hypertext Preprocessor (PHP).


The PHP Hypertext Preprocessor (PHP) could be an artificial language that enables internet developers to form dynamic content that interacts with databases. PHP is essentially used for developing internet-primarily based computer code applications. This tutorial helps you to create your base with PHP.

PHP development began in 1994 once Rasmus Lerdorf wrote many Common entryway Interface (CGI) programs in C, that he wont to maintain his personal homepage. He extended them to figure with net forms, communicate with databases, and known as this implementation “Personal Home Page/Forms Interpreter” or PHP/FI. PHP/FI might be wont to build straightforward, dynamic net applications. To accelerate bug reportage and improve the code, Lerdorf at the start proclaimed the discharge of PHP/FI as “Personal Home Page Tools (PHP Tools) version one.0” on the Usenet discussion cluster comp.infosystems.www.authoring.CGI on June eight, 1995. This unleashes already had the fundamental practicality that PHP has nowadays. This enclosed Perl-like variables, kind handling, and also the ability to implant hypertext markup language. The syntax resembled that of Perl but was less complicated, additional restricted, and less consistent.


What is PHP full form?

PHP full form name is Hypertext Preprocessor.


Why Learn PHP?

PHP began as a little open-supply project that evolved as a lot of and a lot of individuals identified however helpful it had been. Rasmus Lerdorf unleashed the primary version of PHP manner back in 1994.

PHP may be a should for college students operating|and dealing} professionals to become a good technologist especially once they area unit working in internet Development Domain. I will be able to list down a number of the key benefits of learning PHP:

  • PHP may be an algorithmic descriptor for “PHP: machine-readable text Preprocessor”.
  • PHP may be a server-facet scripting language that’s embedded in a hypertext markup language. it’s accustomed manage dynamic content, databases, session following, even build entire e-commerce sites.
  • It is integrated with a variety of in-style databases, together with MySQL, PostgreSQL, Oracle, Sybase, Informix, and Microsoft SQL Server.
  • PHP is pleasingly zippy in its execution, particularly once compiled as Associate in Nursing Apache module on the operating system facet. The MySQL server, once started, executes even terribly advanced queries with immense result sets in record-setting time.
  • PHP supports an outsized range of major protocols like POP3, IMAP, and LDAP. PHP4 supplemental support for Java and distributed object architectures (COM and CORBA), creating n-tier development a clear stage for the primary time.
  • PHP is forgiving: PHP language tries to be as forgiving as attainable.

how to create PHP first page | how to use PHP?

It this very easy is to follow some steps and write your PHP
open your anyone Sublime Text or notepad you first start the XAMPP server and open your anyone Sublime Text or notepad now write some HTML and PHP code and save the file. (this is an example(“index.php”)). now go to your webpage and search your local server and your folder name ( localhost/myprograming).

this very easy is to follow some step:-

step 1:-

first, open your xampp folder and click htdocs folder and create a new folder and write folder name myprograming now write some HTML and PHP coding.

example:-

<!DOCTYPE html>
<html>
<head>
	<title>my first php coding</title>
</head>
<body>
<?php echo "my programing"; ?>
</body>
</html>

step 2:-

now save this file index.php in your htducs/myprograming folder


step 3:-

now go to your webpage and enter URL localhost/myprograming now search this.


output:-



Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *