CSC 301 Web Programming Charles Frank.

Slides:



Advertisements
Similar presentations
IS 6116 Introduction – 10 Jan Lecturer Details Aonghus Sugrue Website: aonghussugrue.wordpress.com
Advertisements

PHP I.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 11: Advanced Web Technologies.
Introduction to JavaScript
BY: ALBERTO CABEZAS 4/19/2010. INTRODUCTION: PHP is considered today as one of the most famous scripting languages. PHP is widely used as a general purpose.
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.
Outline IS400: Development of Business Applications on the Internet Fall 2004 Instructor: Dr. Boris Jukic Server Side Web Technologies: Part 2.
Multiple Tiers in Action
Apache Tomcat Server Typical html Request/Response cycle
WHAT IS PHP PHP is an HTML-embedded scripting language primarily used for dynamic Web applications.
PHP By Dr. Syed Noman Hasany. PHP PHP was originally created by Rasmus Lerdorf in PHP stands for PHP: Hypertext Preprocessor (a recursive acronym).
Web Page A page displayed by the browser. Website Collection of multiple web pages Web Browser: A software that displays web pages on client computer.
PHP and MySQL Week#1  Course Plan.  Introduction to Dynamic Web Content.  Setting Up Development Server Eng. Mohamed Ahmed Black 1.
The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language.
Server Side Scripting Norman White. Where do we do processing? Client side – Javascript (embed code in html) – Java applets (send java program to run.
Sys Prog & Scripting - HW Univ1 Systems Programming & Scripting Lecture 15: PHP Introduction.
PHP: Hypertext Processor Fred Durao
August Chapter 1 - Essential PHP spring into PHP 5 by Steven Holzner Slides were developed by Jack Davis College of Information Science and Technology.
Intro to PHP Introduction to server-side scripts (It’s all good :D) © TAFE NSW
 Computer Information System Club focused on the understanding and applied learning of web development.  The club was founded in April 5,  We.
Server- Side technologies Client-side vs. Server-side scripts PHP basic ASP.NET basic ColdFusion.
Copyright © Curt Hill PhP History and Introduction.
IST 210: PHP BASICS IST 210: Organization of Data IST210 1.
PHP and MySQL by Example COMP YL Professor Mattos.
JavaScript – Quiz #9 Lecture Code:
1Computer Sciences Department Princess Nourah bint Abdulrahman University.
Intro to PHP IST2101. Review: HTML & Tags 2IST210.
PHP vs ASP.NET By: Colin Cramer. Overview HistoryCostPopularitySupportScalability.
Web Design: Basic to Advanced Techniques Fall 2010 Mondays 7-9pm 200 Sutardja-Dai Hall Introduction to PHP.
1 CSC 301 Web Programming Charles Frank. PHP – Stands for:  Personal Home Page (originally),  PHP: Hypertext Preprocessor (now; follows GNU’s recursive.
IT ELECTIVE 2.  Web server Can refer to either the hardware (the computer) or the software (the computer application) that helps to deliver content that.
PHP “Personal Home Page Hypertext Pre-processor” (a recursive acronym) Allows you to create dynamic web pages and link web pages to a database.
PHP Introduction PHP is a server-side scripting language.
Asstt. Prof Sonia Sharma Computer Dept 1 HTML ( Hypertext MarkUP Language ) HTML is the lingua franca for publishing hypertext on the World Wide Web.
JavaScript Dynamic Active Web Pages Client Side Scripting.
Creating PHP Pages Chapter 5 PHP Structure and Syntax.
 Before you continue you should have a basic understanding of the following:  HTML  CSS  JavaScript.
1 PHP Intro PHP Introduction After this lecture, you should be able to: Know the fundamental concepts of Web Scripting Languages in general, PHP in particular.
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.
Web Page Designing With Dreamweaver MX\Session 1\1 of 9 Session 1 Introduction to PHP Hypertext Preprocessor - PHP.
PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a widely-used, free, and efficient alternative.
Introduction to PHP. PHP Origins Rasmus LerdorfRasmus Lerdorf (born Greenland, ed Canada) PHP originally abbreviation for ‘Personal Home Pages’, now ‘PHP.
Web Programming Building Dynamic Web Pages Adrian Shaw (ais) – 80% Jonathan Roscoe (jjr6) - 20%
PHP Basics and Syntax Lesson 3 ITBS2203 E-Commerce for IT.
BRANDING YOURSELF FINAL DRAFT.
PHP Assignment Help BookMyEssay. What is PHP PHP is a scripting language generally used on web servers. It is an open source language and embedded code.
PHP using MySQL Database for Web Development (part II)
Introduction to PHP and MySQL – Creating Database-Driven Websites
A PRESENTATION ON (IN PHP,CSS,HTML)
Our Technologies Dr. Charles Severance
Introduction to Dynamic Web Programming
Section 6.3 Server-side Scripting
Lecture 11. Web Standards Continued
Introduction to PHP “PHP is a server-side scripting language designed specifically for the Web. Within an HTML page, you can embed PHP code that will be.
Introduction to PHP “PHP is a server-side scripting language designed specifically for the Web. Within an HTML page, you can embed PHP code that will be.
Pemrograman V (PHP) “Introduction”
PHP / MySQL Introduction
PHP Introduction.
Introduction to JavaScript
Web Browser server client 3-Tier Architecture Apache web server PHP
Skulbong Taisawapak ID:
Introduction to JavaScript
Information system Management
Information system Management
IntroductionToPHP Static vs. Dynamic websites
Tutorial 6 PHP & MySQL Li Xu
Introduction to PHP.
Client-Server Model: Requesting a Web Page
Hypertext Preprocessor
Introduction to JavaScript
Presentation transcript:

CSC 301 Web Programming Charles Frank

PHP Stands for: Developed: Current release: 5.6.11 Personal Home Page (originally), PHP: Hypertext Preprocessor (now; follows GNU’s recursive naming convention). Developed: Created by Rasmus Lerdorf in ’94 Became later an Open Source project, developed and maintained by the PHP Group Open Source project = you have access to the source code, and you can use, alter and redistribute it without charge Current release: 5.6.11

PHP What is it? A server-side scripting language designed specifically for the Web. PHP code: is embedded within HTML pages; extension is .php is interpreted at the Web server each time the page is visited  you can only execute PHP scripts through a Web server with PHP installed! generates (= creates on the fly) (X)HTML or JavaScript or other output that the visitor will see on the client tier IMPORTANT: a client will never see the PHP code, only the (X)HTML that the Web server returns from the script  the browser doesn’t (need to) understand PHP (different from client-side JavaScript)!

PHP Popularity http://w3techs.com/technologies/overview/programming_language/all http://w3techs.com/

MySQL http://www.mysql.com/ http://www.mysql.com/why-mysql/ “The world’s most popular open source database” http://www.mysql.com/why-mysql/

Home page for PHP http://www.php.net Search for: phpinfo

Assignment #1 http://csweb.hh.nku.edu/csc301/frank/info.php