PHP + Oracle = Data-Driven Websites

Slides:



Advertisements
Similar presentations
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 11: Advanced Web Technologies.
Advertisements

PHP and CSS to control web apps styles. CSS is used to style today’s web applications.
Modern Web Application Frameworks CSE 591 – Security and Vulnerability Analysis Spring 2015 Adam Doupé Arizona State University
What is it? –Large Web sites that support commercial use cannot be written by hand What you’re going to learn –How a Web server and a database can be used.
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
Multiple Tiers in Action
What is Web Design The term “web design” has come to encompass a number of disciplines, including: Visual (graphic) design User interface and experience.
ITM352 Javascript and Dynamic Web Pages: Client Side Processing.
WHAT IS PHP PHP is an HTML-embedded scripting language primarily used for dynamic Web applications.
Agenda What is AJAX? What is jQuery? Demonstration/Tutorial Resources Q&A.
CGS3066: Web Programming and Design Summer 2014 Instructor Mir Anamul Hasan.
INFM 603: Information Technology and Organizational Context Jimmy Lin The iSchool University of Maryland Thursday, October 18, 2012 Session 7: PHP.
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
Server-side Scripting Powering the webs favourite services.
With your friendly Web Developer, Chris.. Terminology  HTML - > Hypertext Markup Language  CSS -> Cascading Style Sheet  open tag  close tag  HTTP->Hypertext.
February 16, Aaron Cuffman Andy Nagle Adam Schultz Web Site.
PHP and MySQL by Example COMP YL Professor Mattos.
JavaScript – Quiz #9 Lecture Code:
Introduction to ASP.NET1. 2 Web applications in general Web applications are divided into two parts –The server part –The client part The server part.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
 Computer use language to communicate  A web browser will read these tags and translate it into what you actually see  Viewing Code of ESPN WebsiteESPN.
Session 1 Chapter 1 - Introduction to Web Development ITI 133: HTML5 Desktop and Mobile Level I
Ajax for Dynamic Web Development Gregory McChesney.
Asstt. Prof Sonia Sharma Computer Dept 1 HTML ( Hypertext MarkUP Language ) HTML is the lingua franca for publishing hypertext on the World Wide Web.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CSC 2720 Building Web Applications Basic Frameworks for Building Dynamic Web Sites / Web Applications.
How Web Database Architectures Work CPS181s April 8, 2003.
By Nathaniel Dias, Benton Le Ics4U Mr.Krnic. The beginning of the internet started as a result of the Cold War. After the launch of the Russian space.
COSC 2328 – Web Programming.  PHP is a server scripting language  It’s widely-used and free  It’s an alternative to Microsoft’s ASP and Ruby  PHP.
IN THIS LESSON WE WILL REVIEW THE STRUCTURE OF THE INTERNET AND HOW BROWSERS ASSEMBLE WEBSITES BASED ON INSTRUCTIONS THEY RECEIVE FROM SERVERS. Internet.
Introduction to ASP.NET development. Background ASP released in 1996 ASP supported for a minimum 10 years from Windows 8 release ASP.Net 1.0 released.
Agenda 1)Modern web standards overview 2)JavaScript library overview 3)Building a Single Page Application SPA.
1/7/2016www.infocampus.co.in1. 1/7/2016www.infocampus.co.in2 Web Development training gives you and all-round training in both the design and the development.
The Brenkoweb provides the excellent online programming tutorial for the programmer in various languages like as PHP, SQL, HTML, ASP, Javascript,
Web Page Design The Basics. The Web Page A document (file) created using the HTML scripting language. A document (file) created using the HTML scripting.
I NTRO TO W EB TECHNOLOGY Basic terms. C LIENT – S ERVER M ODEL a distributed communication between service requestors and service providers.
Web Development. Agenda Web History Network Architecture Types of Server The languages of the web Protocols API 2.
Dive into web development
BRANDING YOURSELF FINAL DRAFT.
Introduction to Dynamic Web Content
A PRESENTATION ON (IN PHP,CSS,HTML)
Web Technologies Computing Science Thompson Rivers University
JavaScript and Ajax (Ajax Tutorial)
Web Concepts Lesson 2 ITBS2203 E-Commerce for IT.
Introduction to Website Creation in sphb K200
The Internet and HTML Code
Introduction to Advance Web Technologies
Haritha Dasari Josue Balandrano Coronel -
Front Side Development
AJAX.
PHP / MySQL Introduction
Department of Computer Science, Florida State University
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Database Driven Websites
Programming vs. Packaged
04 | Web Applications Gerry O’Brien | Technical Content Development Manager Paul Pardi | Senior Content Publishing Manager.
Web Browser server client 3-Tier Architecture Apache web server PHP
Introduction to Dynamic Web Content
Mozafar Bag-Mohammadi
Unit 6 part 3 Test Javascript Test.
Secure Web Programming
Globally interconnected 6lowPAN
Architecture of the web
Web Technologies Computing Science Thompson Rivers University
Client-Server Model: Requesting a Web Page
Web Application Development Using PHP
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

PHP + Oracle = Data-Driven Websites

Agenda HTML 5 Basics Bootstrap 3 PHP Scripting Using the OCI8 Library

HTML5 Modern Markup language for browsers. Easy to use and understand. Separation of concerns: HTML: Markup CSS: Layout & Styling JavaScript: Programming Guide to Oracle 10g

Bootstrap 3 A CSS and JavaScript framework Makes it easy for you to make responsive and attractive sites. The web design has been done for you! Guide to Oracle 10g

PHP A Web Prog. Lang. Code intermixed with HTML markup. Makes it easy to learn. Gets messy with large sites. Guide to Oracle 10g

OCI8 PHP Library to allow communication with Oracle databases. Connect() Parse() Execute() Guide to Oracle 10g

How it All Works Together HTTP Request GET / POST End User OCI8: SQL PL/SQL Web Server w/ PHP HTTP Response HTML OCI8: FetchData Set Most Of The Work is Done Here Oracle 11g

Fudgemart Demo Click on FudgemartDemo.zip Extract to C:\Users\Administrator\Documents\My Web Sites Open in Web Matrix Guide to Oracle 10g

Questions