Top Banner
Gurugedara Educational Channel Supportive Materials Information and Communication Technology G.C.E. (A/L) Lesson 6- PHP Before, start the practicing examples including php codes, install xampp server in your computer downloading from https://www.apachefriends.org/index.html. Example PHP codes are given below. You can copy the content of php code one by one to the Notepad editor. When you save the copied text provide php file names like PhpEx29.php. They should save in the folder of c:\xampp\htdocs. You can follow HTML supportive materials for saving .php file with notepad editor. Example 01- PhpEx29.php Example 02- PhpEx30.php <html> <body> <?php function LocalTest() { $x = 5; // local scope } LocalTest (); echo $x; // using x outside the function will generate an error ?> </body> </html> <html> <body> <?php function LocalTest () { $x = 5; // local scope echo $x; } LocalTest (); ?> </body> </html>
12

Gurugedara Educational Channelnie.lk/pdffiles/other/sICTL06sm.pdf · Example 03- PhpEx31.php Example 04- PhpEx32.php

Oct 23, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
  • Gurugedara Educational Channel Supportive Materials

    Information and Communication Technology

    G.C.E. (A/L)

    Lesson 6- PHP

    Before, start the practicing examples including php codes, install xampp server in your

    computer downloading from https://www.apachefriends.org/index.html.

    Example PHP codes are given below. You can copy the content of php code one by one to the

    Notepad editor. When you save the copied text provide php file names like PhpEx29.php. They

    should save in the folder of c:\xampp\htdocs.

    You can follow HTML supportive materials for saving .php file with notepad editor.

    Example 01- PhpEx29.php

    Example 02- PhpEx30.php

    https://www.apachefriends.org/index.html

  • Example 03- PhpEx31.php

    Example 04- PhpEx32.php

  • Example 05- PhpEx33.php

  • PHP Database Operations

    Example 06- Ex01CreateDB.php

    Create DB

  • Example 07- Ex02CreateTB.php

    Create DB

  • Example 08- Ex03AddRec.php

  • Example 09- Ex04AddRec2.php

  • Example 10- Ex05AddRec3.php

  • Example 11- Ex06Display.php

  • Example 12- Ex07Display2.php

  • Example 13- Ex08Update.php

    Above programs were written with Object Oriented Method. Same programs with Procedural

    Method will discuss in the next lesson. The ICT paper of G.C.E. A/L examination 2019

    includes an question with Object Oriented Method.

  • Example 14- Ex09Delete.php

    My PHP Program to Delete Data