Difference between revisions of "PHP Basics"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
Line 1: Line 1:
 
{{Need_Expanding}}
 
{{Need_Expanding}}
  
PHP is a server side scripting language, which is run on the server before the page is served to the client. It can be written on it's own our within normal standard HTML etc. It must be stored on a running webserver and you can only access it via it's URL in a browser.
+
PHP is a server side scripting language, which is run on the server before the page is served to the client. Essentially it dynamically creates pages on the fly. It can be written on it's own our within normal standard HTML etc. It must be stored on a running webserver and you can only access it via it's URL in a browser. The page the client will receive will have all of the server side elements replaced with the output of the code. If your viewed source you would only see standard HTML and text.
 
 
The page the client will receive will have all of the server side elements replace with the output of the code. If your viewed source you would only see standard HTML and text.
 
  
 
== Creating a Hello World in PHP ==
 
== Creating a Hello World in PHP ==
Line 10: Line 8:
 
//Output:
 
//Output:
 
//hello world
 
//hello world
 +
</syntaxhighlight>
 +
 +
echo is used to write text to the page, you could also echo html code or variables:
 +
<syntaxhighlight lang="php" line>
 +
echo "<p>Hello World<br>Hola Mundo</p>";
 +
//Output:
 +
//Hello World
 +
//Hola Mundo
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 00:22, 17 December 2016

This section needs expansion.
You can help by adding to it.

PHP is a server side scripting language, which is run on the server before the page is served to the client. Essentially it dynamically creates pages on the fly. It can be written on it's own our within normal standard HTML etc. It must be stored on a running webserver and you can only access it via it's URL in a browser. The page the client will receive will have all of the server side elements replaced with the output of the code. If your viewed source you would only see standard HTML and text.

Creating a Hello World in PHP

1 echo "hello world";
2 //Output:
3 //hello world

echo is used to write text to the page, you could also echo html code or variables:

1 echo "<p>Hello World<br>Hola Mundo</p>";
2 //Output:
3 //Hello World
4 //Hola Mundo