1 / 18

Powerpoint Templates

Server Side Scripting PHP. Powerpoint Templates. Variable. The Variable Name. start with the “$” characters Variable names can consist of characters, numbers and underscore “_” after the “ $ ” character, must be followed or the underscore character "_“ are case sensitive

ellema
Download Presentation

Powerpoint Templates

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Server Side Scripting PHP Powerpoint Templates

  2. Variable

  3. The Variable Name • start with the “$” characters • Variable names can consist of characters, numbers and underscore “_” • after the “$” character, must be followed or the underscore character "_“ • are case sensitive Example. • $_name • $first_name • $name3 • $lastName • global  $_name  Æ variabel  global

  4. example for using variable <html> <head> <title> Use Variable </title> </head> <body> <?php $Name = "Muhammad"; $NAME = "Zein"; $name = "Zidane"; echo "$Name$NAME$name"; ?> </body> </html>

  5. Indirect Variable References • Variables that are named from the contents of other variables. • Created when the script is executed (runtime). Example. $name = "Jhon"; $$name = “Registered User"; Result Registered User

  6. Predefinied Variable • The name of variable has been used by PHP. • Some Predefined Variable : • $GLOBAL → Refers to all global variables. • $_SERVER → server environment configuration information. • $_GET → The Variable of GET. • $_POST → The Variable of HTTP POST. • $_FILES → The Variable of HTTP File Upload. • $_REQUEST → The Variable of HTTP Request. • $_SESSION → The Variable of Session • $_COOKIE → The Variable of HTTP Cookie. • $php_errormsg → last error message. • $http_response_header → response from the HTTP Header reques Super Global * * Superglobals: global variables that include a script file, without having to define global $ variable.

  7. Predefinied Variable • $GLOBAL • Referring to the global variables in a script. • Array data type.

  8. Predefined  Variable • $_SERVER • Contains the value associated with serverinformation. • Array data type. • Complete documentation:http://www.php.net/manual/en/reserved.variables.server.php Example : Results :

  9. Predefined  Variable • $_GET • Variables from URL parameters. • Array data type. • Example : Create a file with the name predefined_get.php • Access that files in the browser and add the parameter http://localhost/predefined_get.php?name=Tom Results : Selamat Datang Tom

  10. Predefined  Variable • $_POST • Variables derived from the HTTP POST. • Array data type. • Application in HTML Form • Value Properti “name” input elements, to index arrays $_POST • Example, file : form.php • Example, file : input.php

  11. Predefined  Variable • $_FILES • Variables containing items, uploaded via HTTP POST method. • 2-dimensional array of data types • Index Variable $_FILES : • $_FILES[‘foto’][‘name’] → Name of the original file on the client computer. • $_FILES[‘foto’][‘type’] → mime type. Ex : image/gif • $_FILES[‘foto’][‘size’] → file size in byte • $_FILES[‘foto’][‘ • $_FILES[‘foto’][‘tmp_name’]→ Name of the temporary file that is stored on a server uploaded • $_FILES[‘foto’][‘error’]  → Error code that occurred when uploading

  12. Predefined  Variable • $_COOKIE • Variables derived from HTTP Cookies. • array data type Set cookies on your browser: • setcookie(name,  value, expire,  path, domain, secure,  httponly) • http://www.php.net/manual/en/function.setcookie.php

  13. Predefined  Variable • $_SESSION • Variable deriver from session • Array type data Using Session in PHP • session_start() • $_SESSION[‘name’] • session_unset() • session_destroy() • http://www.php.net/manual/en/ref.session.php

  14. Predefined  Variable • $_REQUEST • Contains the value of $_GET,   $_POST,  dan   $_COOKIE • array data type • $php_errormsg • String Type Data

  15. TIPE DATA PHP supported by 8 data type. scalar : • Boolean • Integer • Floating-point • String Compound • Array • Object Khusus • Resources • Null

  16. Example • Boolean <html> <head> <title> Nilai Boolean </title> </head> <body> <h1> ContohNilai Boolean </h1> <pre> $a = TRUE; $b = FALSE; </pre> HasilEksekusidengan PHP : <br> <?php $a = TRUE; $b = FALSE; echo "\$a = $a"."<br>"; echo "\$b = $b"; ?> </body> </html>

More Related