0% found this document useful (0 votes)
18 views5 pages

Introduction To Web Programming

This document provides an introduction to web programming using PHP. It discusses the relevance of PHP, how to install a local server, and creates a first PHP program. The key points are: 1. PHP is a server-side scripting language used to create dynamic web pages and applications. Facebook is an example of a website built with PHP. 2. A local server like XAMPP needs to be installed on your computer to run PHP programs, as PHP code is executed on the server-side. 3. A simple "Hello World" PHP program is demonstrated which uses echo to output text and <?php ?> tags to enclose the PHP code.

Uploaded by

Ken Española
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
Download as pptx, pdf, or txt
0% found this document useful (0 votes)
18 views5 pages

Introduction To Web Programming

This document provides an introduction to web programming using PHP. It discusses the relevance of PHP, how to install a local server, and creates a first PHP program. The key points are: 1. PHP is a server-side scripting language used to create dynamic web pages and applications. Facebook is an example of a website built with PHP. 2. A local server like XAMPP needs to be installed on your computer to run PHP programs, as PHP code is executed on the server-side. 3. A simple "Hello World" PHP program is demonstrated which uses echo to output text and <?php ?> tags to enclose the PHP code.

Uploaded by

Ken Española
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1/ 5

Introduction to Web Programming

Objectives:
1. Discuss the relevance of knowing the Web based programming.
2. Installing local server and creating the first PHP program.
What is Website?
Website is composed of webpage document which include
information.
What is PHP programming?
PHP-PHP: Hypertext Preprocessor is a standard programming
language use to create a dynamic webpage.
Developed by Rasmus Lerdorf in 1994
PHP program is executable in SERVER.
Facebook is an example of website written in PHP.
What is SERVER?
Is one who accept the client request or needs. PHP is scripting
language that executable in server that’s why we need a server to
your computer.
Most example of server is IIS(Internet Information Service) and
Google Data Server but this server is PAYABLE, in the other hand
there’s a free server that can be install to your computer which
called local server.
XAMPP is the free and most common local server that we will going
to install in our personal computers. Download it and install.
IDE-Integrated Development that use in writing the code in PHP is
text editor like Notepad, Notepad ++, Sublime etc.
The output of PHP can be display or seen in the browser
like google chrome, Mozilla firefox, Opera and Safari.

Creating First PHP Program

<?php
echo”HELLO world:;

?>
PHP syntax enclosed in <?php open tag and ?>
Close tag see the example above: echo syntax means displaying the
output.
-PHP is also compatible in any Operating System
Create your own PHP program that display your Name and
Grade and Section. Write your code in a piece of paper

You might also like