Class03 Introduction to Web Development (Hierarchy and the IDE)

Slides:



Advertisements
Similar presentations
Understand Web Page Development Software Development Fundamentals LESSON 4.1.
Advertisements

SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Multiple Tiers in Action
Computer Science 101 Web Access to Databases Overview of Web Access to Databases.
CS 160: Software Engineering August 27 Class Meeting Department of Computer Science San Jose State University Fall 2014 Instructor: Ron Mak
Overview of HTML. Three Different Approaches  Text editor like Notepad  HTML editor such as: –KompoZer –DreamWeaver –Microsoft Expression Web –iWeb.
Website Development & Management Introduction & Overview CIT Fall Instructor: John Seydel, Ph.D.
Chapter 1: Introduction to Web
With your friendly Web Developer, Chris.. Terminology  HTML - > Hypertext Markup Language  CSS -> Cascading Style Sheet  open tag  close tag  HTTP->Hypertext.
Class03 Introduction to Web Development with PHP MIS 3501, Fall 2015 Brad Greenwood, PhD MBA Department of MIS Fox School of Business Temple University.
HTML. Principle of Programming  Interface with PC 2 English Japanese Chinese Machine Code Compiler / Interpreter C++ Perl Assembler Machine Code.
Murach’s ASP.NET 4.0/VB, C1© 2006, Mike Murach & Associates, Inc.Slide 1.
Kingdom of Saudi Arabia Ministry of Higher Education Al-Imam Muhammad Ibn Saud Islamic University College of Computer and Information Sciences Chapter.
Murach's HTML5 and CSS3, C1© 2012, Mike Murach & Associates, Inc. Slide 1.
Unit 1 – Web Concepts Instructor: Brent Presley.
Class03 Introduction to Web Development (Hierarchy and the IDE) MIS 3501, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University.
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.
Sessions and cookies (part 2) MIS 3501, Fall 2015 Brad N Greenwood, PhD Department of MIS Fox School of Business Temple University 11/19/2015.
Form Data (part 1) MIS 3502, Fall 2015 Brad Greenwood, PhD Department of MIS Fox School of Business Temple University 11/10/2015.
Class07 PHP: loops and includes MIS 3501, Fall 2015 Brad Greenwood, PhD MBA Department of MIS Fox School of Business Temple University 9/15/2015.
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.
Class05 How to get data from a form MIS 3501, Fall 2015 Brad N Greenwood, PhD MBA Department of MIS Fox School of Business Temple University 9/8/2015.
Basics Components of Web Design & Development Basics, Components, Design and Development.
Class02 Introduction to web development concepts MIS 3501, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 1/14/2016.
L.A.M.P. İlker Korkmaz & Kaya Oğuz CS 350. Why cover a lecture on LAMP? ● Job Opportunities – There are many hosting companies offering LAMP as a web.
National College of Science & Information Technology.
JavaScript, AJAX and JSON MIS 3502, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 2/9/2016.
1 Chapter 1 INTRODUCTION TO WEB. 2 Objectives In this chapter, you will: Become familiar with the architecture of the World Wide Web Learn about communication.
Getting Started With HTML
Web Programming Language
Brad N Greenwood, PhD MBA
Sessions and cookies MIS 3501 Jeremy Shafer Department of MIS
Tonga Institute of Higher Education IT 141: Information Systems
Form Data (part 2) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
IS1500: Introduction to Web Development
Introduction to Dynamic Web Programming
Organize your code with MVC
Chapter 5 Scripting Language
WWW and HTTP King Fahd University of Petroleum & Minerals
Department of Computer Science
Introduction to web development concepts
Introduction and Principles
Introduction to Web Development (Part 2)
PHP: includes MIS 3501 Jeremy Shafer Department of MIS
Sessions and cookies (part 2)
Form Data (part 1) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
Class07 PHP: loops and includes
Chapter 5 Scripting Language
How to get data from a form
Introduction to JavaScript
Form Data (part 2) MIS 3501 Jeremy Shafer Department of MIS
Organize your code with MVC
Tonga Institute of Higher Education IT 141: Information Systems
Sessions and cookies (part 1)
Form Data (part 2) MIS 3501 Jeremy Shafer Department of MIS
Class07 PHP: loops MIS 3501 Jeremy Shafer Department of MIS
JavaScript.
Class08 Using the Documentation
Overview of HTML.
Class05 How to get data from a form
MySQL Backup, Transfer and Restore
Tonga Institute of Higher Education IT 141: Information Systems
Sessions and cookies MIS 3501 Jeremy Shafer Department of MIS
Class11 Introduction to relational databases and MySQL
Document Structure & HTML
Form Data (part 1) MIS3501 Jeremy Shafer Department of MIS
Introduction to JavaScript
Web Application Development Using PHP
Intro to Programming (in JavaScript)
© 2017, Mike Murach & Associates, Inc.
Presentation transcript:

Class03 Introduction to Web Development (Hierarchy and the IDE) MIS 3501, Fall 2015 Jeremy Shafer Department of MIS Fox School of Business Temple University 9/1/2015

Course Overview You are here. MySQL To do: HTML & CSS Weeks 1 & 2 PHP Weeks 3 & 4 PDO Week 7 MySQL Weeks 5 & 6 To do: Organize your code with MVC (week 8) Debug your code (week 9) Work with forms (week 10) Use arrays (week 11 & 12) Use sessions (week 13) You are here.

The Internet We talked about this last time, but the internet is made up of a series of computers which are exchanging information. Imagine a restaurant… Your computer is a client… it makes a request of the waiter. The language they speak is TCP/IP The waiter is a server… it brings back what has been requested Sometimes the client is not allowed to have what has been requested… the server will say no (like an angry spouse) If we want to stretch the metaphor to the breaking point, your plate is a web browser… it displays things in http… salad plates do ftp… What is important to remember though, is that the internet is just computers talking to computers. And the computer that your computer is talking to, has a file structure just like your computer (i.e. folders and files).

© 2014, Mike Murach & Associates, Inc. Discuss: Why are index.htm, index.html and index.php called “default pages”? © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc. Discuss: Depending on the configuration of a server, you may not see a folder structure like this. Why would a server administrator choose to present things graphically vs. in a file structure? © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc. Just for Emphasis See? No file specified here. *But* index.html was present. © 2014, Mike Murach & Associates, Inc.

PHP… Getting Going Lets chat about PHP PHP was designed a server side scripting language (it can be used for general purpose programming now as well) Others Include: ASP, ASP.NET, R, Perl, JavaScript, Python, Ruby on Rails As a concept Some programs are run on your local machine e.g. HTML Server side languages run on the SERVER, which renders CUSTOMIZED results for each machine This is different from things like JavaScript where the code is embedded

© 2014, Mike Murach & Associates, Inc. Watch out! Forgetting to refresh your browser is a common mistake for beginners. Also - you may encounter situations where it appears your changes are not taking effect. If that’s happening make sure that: You are editing the right page Completely shut down and restart your browser © 2014, Mike Murach & Associates, Inc.

Hey, where’s the php code? Why can’t we see it here? © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc. Remember where the PHP code resides? © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc.

But This Class is About Creation… In this class we don’t want to just view code You could code in a text editor, e.g. notepad. This would be a pain though Instead we often code in an “Integrated Development Environment” (IDE) IDE’s offer a few benefits They may format code for you (aesthetic). You’ll see why this is important later They may have compilers and interpreters for you (which streamline the development process) They often has nice graphic user interfaces (GUIs), these can automatically generate code for you Recall your experience with the ePortfolio project in 2101 They often integrate multiple different code bases for you

© 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc. Warning icons Error icon Auto-completion list for names that start with $d © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc. Most of the time, we will take this option when creating a new project. © 2014, Mike Murach & Associates, Inc.

© 2014, Mike Murach & Associates, Inc.