dynamic websites

12
DYNAMIC WEB DEVELOPMENT By Jason V. Castellano

Upload: jason-castellano

Post on 16-Apr-2017

21 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Dynamic websites

DYNAMIC WEB DEVELOPMENT

By Jason V. Castellano

Page 2: Dynamic websites

• BSIS IV – A Student

• Web-base Application Developer

• TESDA NC-II and NC-III Passer( National Certification Level II and III)

• Diploma Information Technology

Page 3: Dynamic websites

XAMPPis 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.

Page 4: Dynamic websites

X – Cross-Platform

A – Apache

M – Mysql

P - PHP

P – Perl

Page 5: Dynamic websites

What is PHP?

- Hypertext Preprocessor

- is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.

Page 6: Dynamic websites

Basic PHP Syntax

<!DOCTYPE html><html><body

</body></html>

<?php echo "My first PHP script!"; ?>

Page 7: Dynamic websites

What is Mysql? - Hypertext Preprocessor

- is the world's most popular open source database.

Page 8: Dynamic websites

Mysql vs SQLMySQL 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

Page 9: Dynamic websites

SQL stands for Structured Query Language. It's a standard language for accessing and manipulating databases

SELECT * FROM usersSELECT * FROM users WHERE Id = 3INSERT INTO users (Firstname,Lastname) VALUES (“John”, “Cortez”)

Page 10: Dynamic websites

List of Sites that using PHP/Mysql

Page 11: Dynamic websites

Let’s build a project:

System

Page 12: Dynamic websites

THANK YOU