By
Jason V. Castellano
• BSIS IV – A Student
• Web-base Application Developer
• TESDA NC-II and NC-III Passer
( National Certification Level II and III)
• Diploma Information Technology
is a free and open source cross-platform web server
solution stack package developed by Apache Friends,
consisting mainly of the Apache HTTP Server, MariaDB
database, and interpreters for scripts written in the PHP
and Perl programming languages.
- Hypertext Preprocessor
- is a server scripting
language, and a powerful
tool for making dynamic
and interactive Web
pages.
<!DOCTYPE html>
<html>
<body
</body>
</html>
<?php echo "My first PHP script!"; ?>
- Hypertext Preprocessor
- is the world's most popular
open source database.
MySQL is a database management system, like
SQL Server, Oracle, Informix, Postgres, etc.
MySQL is a RDMS (Relational Database
Management System).
SQL stands for Structured
Query Language. It's a
standard language for
accessing and manipulating
databases
SQL stands for Structured Query
Language. It's a standard
language for accessing and
manipulating databases
SELECT * FROM users
SELECT * FROM users WHERE Id = 3
INSERT INTO users (Firstname,Lastname) VALUES (“John”, “Cortez”)
Dynamic websites
Dynamic websites
Dynamic websites

Dynamic websites

  • 1.
  • 2.
    • BSIS IV– A Student • Web-base Application Developer • TESDA NC-II and NC-III Passer ( National Certification Level II and III) • Diploma Information Technology
  • 3.
    is a freeand open source cross-platform web server solution stack package developed by Apache Friends, consisting mainly of the Apache HTTP Server, MariaDB database, and interpreters for scripts written in the PHP and Perl programming languages.
  • 5.
    - Hypertext Preprocessor -is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
  • 6.
  • 7.
    - Hypertext Preprocessor -is the world's most popular open source database.
  • 8.
    MySQL is adatabase management system, like SQL Server, Oracle, Informix, Postgres, etc. MySQL is a RDMS (Relational Database Management System). SQL stands for Structured Query Language. It's a standard language for accessing and manipulating databases
  • 9.
    SQL stands forStructured Query Language. It's a standard language for accessing and manipulating databases SELECT * FROM users SELECT * FROM users WHERE Id = 3 INSERT INTO users (Firstname,Lastname) VALUES (“John”, “Cortez”)