Server Side Scripting. Common Gateway Interface (CGI) The web is a client-server system.

Slides:



Advertisements
Similar presentations
Alexander Carrington and Liam Martell. Introduction Client: Tom Goldsworthy – G-Group Security Project: Electronic Incident Reporting System Online access.
Advertisements

ALEX KELLY EGR Setting Up A Web Server.
FIRST SESSION - XAMPP Jeongmin Lee.  Jeongmin Lee  CS  PHD  Machine Learning, AI  Web System Development.
Adding Dynamic Content to your Web Site
Agenda Web Application Web Page development WAMP
PHP syntax basics. Personal Home Page This is a Hypertext processor It works on the server side It demands a Web-server to be installed.
Install WordPress with Xampp. By With Thanks to: Rupesh Kumar.
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
How Clients and Servers Work Together. Objectives Learn about the interaction of clients and servers Explore the features and functions of Web servers.
Click it Apache Service will start If Skype is on, then Quit Skype and exit from Skype. Does not work if Skype is On. You can start Skype later on.
Dynamic Web site With PHP and MySQL. MySQL The combination of MySQL database and PHP scripting language is optimum for building dynamic websites. MySQL.
1 CS428 Web Engineering Lecture 18 Introduction (PHP - I)
Setting Up a Development Server Once you have your own development server, you’ll wonder how you ever managed without one, and it’s easy to set one up!
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).
SEEM4570: XAMPP, Eclipse, Summary of Html Kangfei Zhao Room 711,ERB
SYST Web Technologies SYST Web Technologies Installing a Web Server (XAMPP)
Open Source Software WampServer Presented By Mr. R.Aravindhan.
TOPIC 1 – SERVER SIDE APPLICATIONS IFS 234 – SERVER SIDE APPLICATION DEVELOPMENT.
Server Side Scripting Norman White. Where do we do processing? Client side – Javascript (embed code in html) – Java applets (send java program to run.
CSC 318 WEB APPLICATION DEVELOPMENT.  Introduction to Server Scripting language  Client VS Server  Introduction to PHP  PHP Files and Syntax  Function.
Introduction: Drupal is a free and open-source content management system (CMS). A content management system(CMS) is a computer program that allows publishing,
Powerpoint Templates Page 1 Powerpoint Templates Web Programming PHP MySql Ikbal Jamaludin.
Nic Shulver, Intro: Developing Server Applications What is a server? Many types of server – File server – file: networked file.
IDK0040 Võrgurakendused I harjutus 06: PHP: Introduction Deniss Kumlander.
INTERNET APPLICATION DEVELOPMENT For More visit:
Nael Alian Introduction to PHP
Class02 Introduction to web development with PHP MIS 3501, Fall 2015 Brad N Greenwood Department of MIS Fox School of Business Temple University 8/27/2015.
PHP and MySQL by Example COMP YL Professor Mattos.
Working with scripts. HTTP Was too limited Not dynamic.
WAMP server AppServer phpMyAdmin DB creation with phpMyAdmin.
INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise.
Introduction to Web Programming. Introduction to PHP What is PHP? What is a PHP File? What is MySQL? Why PHP? Where to Start?
Luis F. Aguas Technological innovation Project Telecommunications and Digital TV.
XAMPP Introduction to Web Programming Kirkwood Community College Fred McClurg © Copyright 2015, Fred McClurg, All Rights Reserved Web Server Software Distribution.
PHP on a Fast Track a quick introduction to PHP programming by Jarek Francik last time updated in 2012.
Interactive Web Tehcnologies Teppo Räisänen LIIKE/OAMK 2011.
LECTURE 3 MYSQL Database. PHP MYSQL CONNECTION MySQL is a database system used on the web MySQL is a database system that runs on a server MySQL is ideal.
PHP Introduction PHP is a server-side scripting language.
 PHP program can be run under various like WAMP, XAMPP etc.  WAMP Server: this server is a web development platform which helps in creating dynamic.
PhpMyAdmin Matthew Walsh April 28, 2003 CMSC Shawn Sivy.
Steps to Install VirtueMart 1. Setup Database 2. Download VirtueMart 3. Setup VirtueMart 4. Test installation Prerequisites: 1. XAMPP installation complete.
8 th Semester, Batch 2009 Department Of Computer Science SSUET.
 Before you continue you should have a basic understanding of the following:  HTML  CSS  JavaScript.
Intro to APACHE, MySQL, and PHP & freely available (hackable) Packages Aonghus Sugrue 04 Oct 2012.
Web Page Designing With Dreamweaver MX\Session 1\1 of 9 Session 1 Introduction to PHP Hypertext Preprocessor - PHP.
Setting up a Development Environment. What you need Webserver (Apache) Database (MySQL) PHP All in Uniserver (google “uniserver”) Download the windows.
What is MOODLE ? MOODLE (abbreviation for Modular Object-Oriented Dynamic Learning Environment) is a free and open-
Installing a Moodle Test Site The painless and easy way.
PHP stands for …….. “PHP Hypertext Pre-processor” and is a server-side scripting language like ASP. PHP scripts are executed on the server PHP supports.
Wordpress. What is Wordpress? Wordpress is a content management system. It is free and easy to use. It allows you to build dynamic websites It is built.
Outline  XAMPP  XAMPP Install  Put php and HTML documents  Windows and Mac Version  Security.
Class02 Introduction to web development concepts MIS 3501, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 1/14/2016.
PHP Basics and Syntax Lesson 3 ITBS2203 E-Commerce for IT.
PHP using MySQL Database for Web Development (part II)
Final Year Project Agree or Dis-agree?.
Setup a PHP + MySQL Development Environment
Introduction to web development concepts
Install WordPress with Xampp
Introduction to Web programming
Pemrograman V (PHP) “Introduction”
Server-Side Application and Data Management IT IS 3105 (Spring 2010)
PHP Introduction.
Web Browser server client 3-Tier Architecture Apache web server PHP
PHP XAMPP is webhosting for windows - Apache : HTTPD for Web Server - MySQL : Database Server - PHP : Interpreter - PHPMyAdmin - Filezilla : FTP Server.
Information system Management
Introduction to PHP.
UFCEUS-20-2 Web Programming
Web Application Development Using PHP
XAMPP.
Presentation transcript:

Server Side Scripting

Common Gateway Interface (CGI) The web is a client-server system

Common Gateway Interface (CGI)

Getting ready for AMP Apache MySQL – phpMyAdmin PHP

AppServ (1 minute setup) Apache PHP MySQL phpMyAdmin Download it and try to install yourself

XAMPP Free and easy to install Contains – X (Cross) Platform – Apache – MySQL – PHP – Perl – Download it and try to install yourself

Localhost Server Try this

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

Next script <?php $Cat = "Spot"; $Dog = "Clif"; print "My cat ". $Cat. " and my dog ". $Dog. " like to play together."; ?>

How to run PHP script Just tell your browser the php name For example localhost/test.php localhost/yourfolder/index.php localhost/yourfolder/test.php