SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.

Slides:



Advertisements
Similar presentations
Introduction to JavaScript
Advertisements

Introduction to PHP MIS 3501, Fall 2014 Jeremy Shafer
Tutorial 6 Creating a Web Form
 Question: What film character is a good analogy to a computer?  Answer Answer  It is actually a very simple machine: It executes exactly what it.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web.
Server Web Server Pages Client Browser  HTML can do everything  We will limit our use to defining the content units – NOT formatting  Why? ›
Dreamweaver MX ? Create professional web pages Visual editing functions –No need to write HTML Includes complete FTP client software Recognises.
Tutorial 6 Working with Web Forms
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
Multiple Tiers in Action
Apache Tomcat Server Typical html Request/Response cycle
Tutorial 6 Working with Web Forms. XP Objectives Explore how Web forms interact with Web servers Create form elements Create field sets and legends Create.
Application Software By Brandon Marcelli.
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
1 CS428 Web Engineering Lecture 18 Introduction (PHP - I)
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
PHP: Hypertext Processor Fred Durao
Intro to PHP at Winthrop CSCI 297 Scripting Languages Day One.
INTRODUCTION TO WEB DATABASE PROGRAMMING
Your Website 1 st Establish a Domain Name (rules)(rules) Whoishttp://whois.nethttp://whois.net Network Solutionshttp://
Server-side Scripting Powering the webs favourite services.
Web application architecture
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Tutorial 7 Creating Forms. Objectives Session 7.1 – Create an HTML form – Insert fields for text – Add labels for form elements – Create radio buttons.
Creating Dynamic Web Pages Using PHP and MySQL CS 320.
Introduction to Web Programming. Introduction to PHP What is PHP? What is a PHP File? What is MySQL? Why PHP? Where to Start?
Tutorial 6 Working with Web Forms. XP Objectives Explore how Web forms interact with Web servers Create form elements Create field sets and legends Create.
Tutorial 6 Working with Web Forms. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore how Web forms interact with.
Week 4 PHP H ypertext P reprocessor Reference : Official Site :
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Microsoft FrontPage 2003 Illustrated Complete Creating a Form.
Offline Web Apps - an offline web application is a list of URLs for HTML, CSS, JavaScript, images, or any other kind of resource. Most browsers have offline.
David Lawrence 7/8/091Intro. to PHP -- David Lawrence.
 How a computer works  The Internet  Browsers  Web Pages.
Tutorial 6 Working with Web Forms. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore how Web forms interact with.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
 A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests.
Creating PHP Pages Chapter 5 PHP Structure and Syntax.
Invitation to Computer Science 6 th Edition Chapter 10 The Tower of Babel.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Web programming Part 1: environment 由 NordriDesign 提供
How Web Database Architectures Work CPS181s April 8, 2003.
8 th Semester, Batch 2009 Department Of Computer Science SSUET.
Class03 Introduction to Web Development (Hierarchy and the IDE) MIS 3501, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University.
Display Page (HTML/CSS)
The idea of adding markup instructions to documents is not new. Before computers, authors would make annotations by hand in their written or typed documents.
ASP Syntax Y.-H. Chen International College Ming-Chuan University Fall, 2004.
HTML FORM Lab Exercise IST Guideline Add forms in your web page so that visitors can add a comment about your web page Forms should include the.
Adding markup instructions to documents is not new. Before computers, authors would make annotations by hand in their written or typed documents. These.
Unit 4 Working with data. Form Element HTML forms are used to pass data to a server. A form can contain input elements like text fields, checkboxes, radio-buttons,
Cloud, Internet, and Browsers. Filezilla Checklist  ISIS access  COMP101 file on your computer  FILEZILLA installed  Saved passwords and certificate.
PHP – Hypertext Preprocessor.
Class03 Introduction to Web Development (Hierarchy and the IDE)
IS1500: Introduction to Web Development
Introduction to Dynamic Web Programming
PHP Introduction.
Web Systems Development (CSC-215)
COMP 101 Introduction.
Intro to PHP at Winthrop
Web Browser server client 3-Tier Architecture Apache web server PHP
COMP 101 Introduction.
JavaScript.
PHP and Forms.
COMP 101 Introduction.

Client-Server Model: Requesting a Web Page
Information Retrieval and Web Design
© 2017, Mike Murach & Associates, Inc.
Presentation transcript:

SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server Pages Client Browser 1 3 2

 Two places you can change › Browser: JavaScript › Server: php  General rule: › do it in the browser if you can  Consider the difference in the date function… Server Web Server Pages Client Browser 1 3 2

 Retrieve the web page  Reads each line › If NOT php, sends it on › If php,  Performs the action  Sends it on Server Web Server Pages 3 2

 If I look in komodo edit…  If I look through view page source… Server Web Server Pages Client Browser 1 3 2

 Files must be.php rather than.html › Servers will find and use index.php as the default if there is no index.html  PHP command format › › Commands always end with ;  Command of interest is › include(“file name”)

 Single line › // comment  Multiple line › /* line › continues */  For includes, optional

 You MAY, you NEED NOT  If you are interested, › Decide what function it brings › Command specifically to look at  echo to create text for HTML › May want to start with  date