PHP

Description

Full note of php
ifyouforgetmee
Note by ifyouforgetmee, updated more than 1 year ago
ifyouforgetmee
Created by ifyouforgetmee about 8 years ago
18
0

Resource summary

Page 1

PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. Alternative to competitors such as Microsoft's ASP. What is PHP? PHP is an acronym for "PHP: Hypertext Preprocessor" PHP is a widely-used, open source scripting language PHP scripts are executed on the server PHP is free to download and use. What is a PHP File? PHP files can contain text, HTML, CSS, JavaScript, and PHP code PHP code are executed on the server, and the result is returned to the browser as plain HTML PHP files have extension ".php" What Can PHP Do? PHP can generate dynamic page content PHP can create, open, read, write, delete, and close files on the server PHP can collect form data PHP can send and receive cookies PHP can add, delete, modify data in your database PHP can be used to control user-access PHP can encrypt data A PHP script is executed on the server, and the plain HTML result is sent back to the browser. Basic PHP Syntax A PHP script can be placed anywhere in the document.A PHP script starts with <?php and ends with ?>:<?php// PHP code goes here?>The default file extension for PHP files is ".php".A PHP file normally contains HTML tags, and some PHP scripting code. PHP Case Sensitivity In PHP, all keywords (e.g. if, else, while, echo, etc.), classes, functions, and user-defined functions are NOT case-sensitive.In the example below, all three echo statements below are legal (and equal): Example <!DOCTYPE html><html><body><?phpECHO "Hello World!<br>";echo "Hello World!<br>";EcHo "Hello World!<br>";?></body></html>However; all variable names are case-sensitive. In the example below, only the first statement will display the value of the $color variable (this is because $color, $COLOR, and $coLOR are treated as three different variables): Example <!DOCTYPE html><html><body><?php$color = "red";echo "My car is " . $color . "<br>";echo "My house is " . $COLOR . "<br>";echo "My boat is " . $coLOR . "<br>";?></body></html> Run example »

Show full summary Hide full summary

Similar

A Level: English language and literature techniques = Structure
Jessica 'JessieB
A Level: English language and literature technique = Dramatic terms
Jessica 'JessieB
English Literary Terminology
Fionnghuala Malone
English Grammatical Terminology
Fionnghuala Malone
A Level: English language and literature techniques = Form
Jessica 'JessieB
English Rhetorical Device Terminology
Fionnghuala Malone
A2 English Language and Literature: Unseen
Jessica 'JessieB
Linguistic Methods
sarahsing
Theories, Theorists and Tests
sarahsing
English Language
livbennett
English Language Techniques
lewis001