Difference between revisions of "PHP"

From Conservapedia
Jump to: navigation, search
(PHP.net link; added a bit about PHP in general; databases)
m (reorder closing sections)
(37 intermediate revisions by 13 users not shown)
Line 1: Line 1:
'''PHP''' is a [[server]]-side scripting language for creating interactive [[web page]]s. The acronym ''PHP'' derives from Personal Home Page, but now it is defined as "PHP: Hypertext Pre-Processor" (see [[recursive acronym]]).  
+
'''PHP''' is a server-side scripting language for creating interactive [[web page]]s. The acronym ''PHP'' derives from Personal Home Page, but is now defined as "PHP: Hypertext Pre-Processor" (it means "something to handle data before it becomes HTML"<ref>[http://www.htmlite.com/php001.php HTMLite PHP Tutorial]</ref> ). Unlike [[HTML]], JavaScript and others, PHP is a Server-Side scripting language. It most always is processed into HTML for use in a web page.
  
PHP is widely used because it is efficient and free. It can be embedded directly into a web page's server-side [[HTML]] code.
+
PHP is one of the most popular scripting languages in the Open Source world, which is often used together with [[Apache]] on [[Linux]] or on other paid platforms such as Microsoft [[IIS]] on [[Windows]].
  
PHP is often used together with [[Apache]] on [[Linux]] or on other platforms such as Microsoft [[IIS]] on [[Windows]].
+
The PHP syntax is very similar to Perl and C.<ref name="w3">[http://www.w3schools.com/php/default.asp PHP Tutorial from W3Schools]</ref>
  
*The PHP syntax is very similar to Perl and C. [http://www.w3schools.com/php/default.asp]
+
PHP is an ''interpreted language'' (like Perl) and not a ''compiled'' one (like [[Java]] or [[C]]).
  
PHP is an ''interpreted language'' (like Perl) and not a ''compiled'' one (like [[Java]] or [[C]]). In order to use PHP, the workstation or server must be pre-configured with PHP; PHP will ''not'' work unless previously installed.
+
==Strings==
 +
 
 +
Strings can be placed in single quotes or double quotes; this differs from Java, where single quotes are used only to enclose one single character rather than a string.
 +
 
 +
Important note:
 +
* single quoted strings don't recognize most special character codes like \n <ref name="sitepoint">[http://www.sitepoint.com/article/advanced-email-php/3/ Advanced PHP from Sitepoint]</ref> and don't expand variables, however they do recognize \' and \\ <ref name="phpstrings">PHP: [http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.single Strings]</ref>
 +
 
 +
===Concatenation ===
 +
 
 +
The [[string concatenation]] operator is the period (or full stop). This is a major difference from many other programming languages, which use a plus sign or ampersand.
 +
 
 +
Example:
 +
 
 +
{{QuoteBox|<nowiki>$first = "car";</nowiki><br />
 +
<nowiki>$second = "nation";</nowiki><br />
 +
<nowiki>$product= $first . $second;</nowiki><br />
 +
<br />
 +
<nowiki>// Equivalent to:</nowiki><br />
 +
<nowiki>$product= "carnation"</nowiki>}}
 +
 
 +
PHP recognizes variable names within strings, which are enclosed in double quotes. Since all variables begin with a dollar sign, it is easy to embed one string inside another. This is the preferred way to create HTML output.
 +
 
 +
For example:
 +
 
 +
{{QuoteBox|<nowiki>$first = "John";</nowiki><br />
 +
<nowiki>$middle = "Quincy"</nowiki><br />
 +
<nowiki>$last = "Adams";</nowiki><br />
 +
    <br />
 +
<nowiki>// Show full name, in bold format</nowiki><br />
 +
<nowiki>echo "<B>$first $middle $last</B>";</nowiki>}}
 +
 
 +
This outputs <nowiki>"<B>John Quincy Adams</B>"</nowiki> to the HTML page.
  
 
==Databases==
 
==Databases==
PHP is compatible with multiple databases, MySQL being the most popular.
+
PHP is compatible with multiple databases, MySQL being the most popular. They go together so well that it's tempting to think of PHP as primarily middleware to link MySQL on the back end to HTML on the front end.
  
 
Overall, PHP is compatible with:
 
Overall, PHP is compatible with:
Line 18: Line 49:
 
*MS-SQL 2000
 
*MS-SQL 2000
 
*Oracle
 
*Oracle
 +
*SQLite
  
 
and many others.
 
and many others.
 +
 +
===PHP and MySQL===
 +
 +
PHP and MySQL are both [[free software]], and they work together well for making database-backed websites.
 +
 +
Methods for PHP to access MySQL databases include mysqli and PDOs.
  
 
==Books==
 
==Books==
 
*''How to Do Everything with PHP & MySQL'', Vikram Vaswani (McGraw-Hill, 2005)
 
*''How to Do Everything with PHP & MySQL'', Vikram Vaswani (McGraw-Hill, 2005)
 +
 +
==See also==
 +
* [[Embed PHP into HTML]]
 +
 +
==References==
 +
<references/>
  
 
==External links==
 
==External links==
*[http://www.w3schools.com/php/default.asp PHP Tutorial] - W3 Schools
+
*[http://php.net PHP.net] - Official PHP Website.
*[http://php.net PHP.net] - Offical PHP Website.
+
 
[[category:information technology]]
+
[[Category:Information Technology]]
 +
[[Category:Scripting Languages]]
 +
[[Category:Programming Languages]]

Revision as of 04:55, February 2, 2017

PHP is a server-side scripting language for creating interactive web pages. The acronym PHP derives from Personal Home Page, but is now defined as "PHP: Hypertext Pre-Processor" (it means "something to handle data before it becomes HTML"[1] ). Unlike HTML, JavaScript and others, PHP is a Server-Side scripting language. It most always is processed into HTML for use in a web page.

PHP is one of the most popular scripting languages in the Open Source world, which is often used together with Apache on Linux or on other paid platforms such as Microsoft IIS on Windows.

The PHP syntax is very similar to Perl and C.[2]

PHP is an interpreted language (like Perl) and not a compiled one (like Java or C).

Strings

Strings can be placed in single quotes or double quotes; this differs from Java, where single quotes are used only to enclose one single character rather than a string.

Important note:

  • single quoted strings don't recognize most special character codes like \n [3] and don't expand variables, however they do recognize \' and \\ [4]

Concatenation

The string concatenation operator is the period (or full stop). This is a major difference from many other programming languages, which use a plus sign or ampersand.

Example:

$first = "car";

$second = "nation";
$product= $first . $second;

// Equivalent to:

$product= "carnation"

PHP recognizes variable names within strings, which are enclosed in double quotes. Since all variables begin with a dollar sign, it is easy to embed one string inside another. This is the preferred way to create HTML output.

For example:

$first = "John";

$middle = "Quincy"
$last = "Adams";

// Show full name, in bold format

echo "<B>$first $middle $last</B>";

This outputs "<B>John Quincy Adams</B>" to the HTML page.

Databases

PHP is compatible with multiple databases, MySQL being the most popular. They go together so well that it's tempting to think of PHP as primarily middleware to link MySQL on the back end to HTML on the front end.

Overall, PHP is compatible with:

  • MySQL
  • PostgreSQL
  • MS-SQL 2000
  • Oracle
  • SQLite

and many others.

PHP and MySQL

PHP and MySQL are both free software, and they work together well for making database-backed websites.

Methods for PHP to access MySQL databases include mysqli and PDOs.

Books

  • How to Do Everything with PHP & MySQL, Vikram Vaswani (McGraw-Hill, 2005)

See also

References

  1. HTMLite PHP Tutorial
  2. PHP Tutorial from W3Schools
  3. Advanced PHP from Sitepoint
  4. PHP: Strings

External links