By Bearzx Dive Into Web Introduction To WEB

Slides:



Advertisements
Similar presentations
ASP.NET Intro An introduction to the languages and communication of an ASP.NET system.
Advertisements

Agenda Web Application Web Page development WAMP
Introduction to JavaScript
HTTP Request/Response Process 1.Enter URL ( in your browser’s address bar. 2.Your browser uses DNS to look up IP address of server.com.
CISC 474 Spring 2008 Page 1 2/11/08 Introduction Syllabus Anatomy of a Web Request Questions Some Possible Projects Assignment Photos.
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.
Multiple Tiers in Action
Introduction to Web Based Application. Web-based application TCP/IP (HTTP) protocol Using WWW technology & software Distributed environment.
Apache Tomcat Server Typical html Request/Response cycle
The World Wide Web and the Internet Dr Jim Briggs 1WUCM1.
Web & Application Development. Microsoft or Open Source  Business needs/requirements VS  Developers Preferences.
INTRO TO MAKING A WEBSITE Mark Zhang.  HTML  CSS  Javascript  PHP  MySQL  …That’s a lot of stuff!
2440: 141 Web Site Administration Web Server-Side Programming Professor: Enoch E. Damson.
WHAT IS PHP PHP is an HTML-embedded scripting language primarily used for dynamic Web applications.
It’s World Wide! I NTRODUCTION TO T HE WEB 1 Photo courtesy:
WEB DESIGN SOME FOUNDATIONS. SO WHAT IS THIS INTERNET.
PHP and MySQL Week#1  Course Plan.  Introduction to Dynamic Web Content.  Setting Up Development Server Eng. Mohamed Ahmed Black 1.
Server Side Scripting Norman White. Where do we do processing? Client side – Javascript (embed code in html) – Java applets (send java program to run.
Intro to PHP Introduction to server-side scripts (It’s all good :D) © TAFE NSW
CGS3066: Web Programming and Design Summer 2014 Instructor Mir Anamul Hasan.
Web Application Programming Carol Wolf Computer Science.
Introduction to Internet Programming (Web Based Application)
WaveMaker Visual AJAX Studio 4.0 Training Installation.
PHP and MySQL by Example COMP YL Professor Mattos.
Architecture of the web Client Server retrieved or generated web page.
1Computer Sciences Department Princess Nourah bint Abdulrahman University.
Session I Chapter 1 - Introduction to Web Development
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
Case Study Dynamic Website - Three Tier Architecture
1 Session 1: Introduction to PHP & MySQL iNET Academy Open Source Web Development.
Web Architecture Introduction
Schedule Introduction to Web & Database Integration Tools and Resources HTML and Styles Forms and Client-Side Scripts DB Engines Forms Processing and Server-Side.
Session 1 Chapter 1 - Introduction to Web Development ITI 133: HTML5 Desktop and Mobile Level I
TOPIC II Dynamic HTML Prepared by: Nimcan Cabd Cali.
Web Development Technologies Advanced Web-based Systems Advanced Web-based Systems | Misbhauddin.
PHP Introduction PHP is a server-side scripting language.
An Investigation into using a Document Management System Presented by: Bijal RanaSupervisor: John Ebden.
ASP. ASP is a powerful tool for making dynamic and interactive Web pages An ASP file can contain text, HTML tags and scripts. Scripts in an ASP file are.
JavaScript & Introduction to AJAX
It’s World Wide! I NTRODUCTION TO T HE WEB 1 Photo courtesy:
 Before you continue you should have a basic understanding of the following:  HTML  CSS  JavaScript.
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.
Overview Web Technologies Computing Science Thompson Rivers University.
CSE3310: Web training A JumpStart for Project. Outline Introduction to Website development Web Development Languages How to build simple Pages in PHP.
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.
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 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.
Web Development. Agenda Web History Network Architecture Types of Server The languages of the web Protocols API 2.
Dive into web development
Programming vs. Packaged
Web Technologies Computing Science Thompson Rivers University
Introduction to web development concepts
Introduction to ASP By “FlyingBono” 2009_01 By FlyingBono 2009_01
Developing Web-Based Applications
PHP / MySQL Introduction
Web Development Training
HTML5 Level I Session I Chapter 1 - Introduction to Web Development
Information system Management
Test 1 Review Website Basics, HTML, CSS
Information system Management
Unit 6 part 3 Test Javascript Test.
Tutorial 6 PHP & MySQL Li Xu
Architecture of the web
Web Technologies Computing Science Thompson Rivers University
UFCEUS-20-2 Web Programming
Client-Server Model: Requesting a Web Page
PHP By Prof. B.A.Khivsara Note: The material to prepare this presentation has been taken from internet and are generated only for students reference and.
Web Application Development Using PHP
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

By Bearzx Dive Into Web Introduction To WEB

What Is WEB The World Wide Web is a system of interlinked HyperText documents accessed via the Internet. By Wikipedia

What Is WEB

What Do You Need To Learn The Very Start: HTML

What Do You Need To Learn Add Styles To Your Pages: CSS

What Do You Need To Learn Make Your Pages Clever: Javascript

What Do You Need To Learn Give Me Dynamic Pages: Server Script Java, C#, PHP, Python, Perl, Ruby.....

What Do You Need To Learn Select My DataBase: SQL

What Do You Need To Learn F**K, That’ s Too Many To Study HTML CSS Browser Script: JavaScript Server Script: Java C# PHP Python Perl Ruby SQL

An Example HTML+CSS JavaScript Server ServerScript + SQL

Some Tools For HTML & CSS & Javascript: Just A Browser~ For Server Script Programming: You Need A Application Server: Apache, Tomcat, IIS... And The Interpreter Of Your Language For SQL: You Need A DBMS MySQL, SQLServer, Oracale, DB2...

Some Tools And Your Operating System? Unix/Linux, Windows... And Your Editor(IDE)? Vim, Emacs, Notepad++, UltraEdit, Eclipse, VisualStudio... And Your Version Control System? Git, SVN...

In The End Although there are so many technologies To Be Handled Algorithm is the MOST IMPORTANT That’ s the SOUL of your CODE!!

By Bearzx Thank