SlideShare a Scribd company logo
https://www.facebook.com/Oxus20
oxus20@gmail.com
Web
Design & Development
Life Cycle
and
Technologies
Web Design & Development
Web Development Life Cycle
Web Essential Questions Review
Prepared By: Samana Zia
Edited By: Abdul Rahman Sherzad
https://www.facebook.com/Oxus20
2
Application
» Application is a term for a set of instructions
Which makes a computer to perform a task.
» The set of instructions are commonly known as
a program.
» Many programs are not applications, a program
with a User Interface is an application.
3
https://www.facebook.com/Oxus20
Types of Applications
» Desktop Applications
» Web Applications
4
https://www.facebook.com/Oxus20
Desktop Application
» Software development began with Desktop Applications.
» A desktop application means any software that can be
installed on a single computer (laptop or desktop) and used
to perform specific tasks.
» Different type of desktop applications:
˃ Application for Communication (Microsoft Outlook)
˃ Application for Data Analysis and Diagram (Microsoft Excel)
˃ Application for Presentation and Graphic ( Microsoft PowerPoint, Adobe Photoshop)
5
https://www.facebook.com/Oxus20
Web Application
» A Web Application is any application that uses a Browser as a client.
» Online Shopping
˃ eBay.com
˃ Amazon.com
˃ etc.
» Social Web Application
˃ Facebook.com
˃ Twitter.com
˃ etc.
6
https://www.facebook.com/Oxus20
Types of Web Applications
» Client-side Web Applications
» Server-side Web Applications
7
https://www.facebook.com/Oxus20
Client-side Web Applications
» Applications on the World Wide Web (www) that
run on the users and clients PCs and are executed
by the browser installed on the user’s computer.
» Examples:
˃ Java Applets
˃ HTML
˃ JavaScript
8
https://www.facebook.com/Oxus20
JavaScript
» A scripting language used to design
interactive Websites.
» A JavaScript is a object oriented language
that can be used to store and retrieve
information on the visitor's computer.
9
https://www.facebook.com/Oxus20
AJAX (Asynchronous JavaScript and XML)
» AJAX is not a new programming language, but a new
way to use existing standards.
» AJAX is the art of exchanging data with a server, and
update parts of a web page without reloading the
whole page.
» Technologies combined together include the followings:
˃ HTML or XHTML
˃ Cascading Style Sheets
˃ JavaScript
˃ XML
10
https://www.facebook.com/Oxus20
J-Query
» A free and open source JavaScript library,
that is used by Web developers to navigate
HTML documents, handle events, perform
animations and add Ajax interactions to Web
pages.
11
https://www.facebook.com/Oxus20
JAVA Applet
» JAVA is a high-level programming language used
to create applications for Desktop, Mobile, and
Web.
» Java Applets are programs that are embedded
in other applications, typically in web pages
displayed in a web browser on the client-side.
12
https://www.facebook.com/Oxus20
Sever Side Application
» Web-based application that runs on the Web Server.
˃ ASP (Active Server Pages)
˃ PHP (PHP: Hypertext Preprocessor)
˃ and other technologies can be manipulated by the
server side before sending the web page to the client.
13
https://www.facebook.com/Oxus20
What is a Website?
» A website is an address (location) on the World Wide
Web(www) that contains your web pages.
» Basically, a website is your personal online
communications connection to the rest of the world.
» A website is totally different from any other type of
publishing, advertising or communications media.
14
https://www.facebook.com/Oxus20
Website Layers
» Front-End
˃ HTML
˃ CSS
˃ JavaScript
» Back-End
˃ DBMS
• MySQL
• SQL Server
• Oracle
• SQLite
˃ Plain Files
˃ XML Files
15
https://www.facebook.com/Oxus20
HTML ( Hyper Text Markup Language)
Definition Example
» With HTML you can
create your own
Website structure and
layouts.
» HTML is not a
programming language
» HTML is a markup
language with a set
of markup tags.
<html>
<head>
<title> welcome</title>
</head>
<body>
<h1> Hello HTML</h1>
</body>
</html>
16
https://www.facebook.com/Oxus20
CSS (Cascading Style Sheet)
» CSS is for control the style
and layout of multiple
Web pages all at once.
» CSS affects all pages to
which it is linked.
» CSS separate design from
Content.
<html>
<head>
<style>
h1 {
font-style: italic; color: red;
font-family: "Verdana, Arial, sans-serif";
font-size: 12pt; color: blue;
}
</style>
</head>
<body>
<h1> Content </h1>
</body>
</html>
https://www.facebook.com/Oxus20
17
ExampleDefinition
Three Ways to Insert CSS
18
https://www.facebook.com/Oxus20
» There are three ways of inserting a style sheet
˃ External Style Sheet
˃ Internal Style Sheet
˃ Inline Style Sheet
JavaScript
Definition Example
» A scripting language
used to design
interactive Web sites.
» JavaScript allows
developers to create
interactive objects
such as pop-up boxes,
and drop-down
menus….
<html>
<head>
<script type="text/javascript">
document.write( Date() );
</script>
</head>
</html>
19
https://www.facebook.com/Oxus20
PHP
» PHP is a server-side scripting language
» A powerful language for making dynamic and
interactive Website and web applications; same as ASP
and JSP does.
» PHP executed on the server and supports many
databases (MSQL, Oracle, Generic ODBC, etc.)
» PHP is open source and free to download
˃ <?php echo date("Y/m/d"); ?> 20
https://www.facebook.com/Oxus20
Database
» A database is a collection of related data.
» By data, we mean known facts that can be recorded and
that have implicit meaning.
˃ For example, consider the names, telephone numbers, and addresses of the
people you know. You may have recorded this data in an indexed address book or
you may have stored it on a hard drive, using a personal computer and software
such as Microsoft Access or Excel.
» This collection of related data with an implicit meaning
is a database.
21
https://www.facebook.com/Oxus20
MySQL DBMS
» MySQL is a fast, easy-to-use RDBMS being used for
many small and big businesses.
» MySQL works on many operating systems and with
many languages including PHP, PERL, C, C++, JAVA, etc .
» MySQL is very friendly to PHP, the most appreciated
language for web development.
22
https://www.facebook.com/Oxus20
https://www.facebook.com/Oxus20
23
Web Development Life Cycle
24
https://www.facebook.com/Oxus20
Web Development Life Cycle
25
https://www.facebook.com/Oxus20
Step 1: Discussion
26
https://www.facebook.com/Oxus20
Step 2: Brainstorming
27
https://www.facebook.com/Oxus20
Step 3: Wireframe
28
https://www.facebook.com/Oxus20
Step 4: Planning the Content
29
https://www.facebook.com/Oxus20
30
https://www.facebook.com/Oxus20
Step 5: Initial Design
31
https://www.facebook.com/Oxus20
Step 6: Client Feedback
32
https://www.facebook.com/Oxus20
Step 7: Design Rework
33
https://www.facebook.com/Oxus20
Step 8: Client Approval
34
https://www.facebook.com/Oxus20
Step 9: Additional Page Design
35
https://www.facebook.com/Oxus20
Step 10: Confirmation
36
https://www.facebook.com/Oxus20
Step 11: Build the HTML
37
https://www.facebook.com/Oxus20
Step 12: …and the CSS
38
https://www.facebook.com/Oxus20
Step 13: Present to Client
39
https://www.facebook.com/Oxus20
Step 14 : Test
40
https://www.facebook.com/Oxus20
Step 15: Launch
Final Step
Deploy a Website On the Server
» Once you have decided to establish a web site there
are three steps to getting it online
» Get a domain name - This is your personal/private address on
the Web.
» Find a web hosting service- Here is where your website will
reside . Free vs Private Web Hosting
» Design, build and upload your website - The process of
website creation.
41
https://www.facebook.com/Oxus20
https://www.facebook.com/Oxus20
42
Why is Ajax an Important Tool in Website
Development?
» Ajax allows Web site developers to combine multiple
Web design tools such as JavaScript and XML to
improved client side usability and faster application
loading time for end users and businesses.
» Ajax allows asynchronous retrieval of data from the
server without disturbing the display or behavior of the
web pages that are in use.
43
https://www.facebook.com/Oxus20
How are HTML, SGML and XHTML
used in Website Development?
» HTML , SGML & XHTML are all markup
languages used to develop documents for the
Web.
44
https://www.facebook.com/Oxus20
Are Static and Dynamic Website the
Same?
NO !!!
» In the static website all data are written in the HTML
pages, and haven’t Database layer.
» But all dynamic websites have separated layer for
Insert, Update and Delete data are called web
backend.
45
https://www.facebook.com/Oxus20
Are Java and JavaScript the Same?
NO !!! Java and JavaScript are two completely different
languages in both concept and design!
» Java is an Object Oriented Programming language ,that be
compiled before it can display properly on the web. You can
use java in your HTML page with using <APPLET>tag .
» JavaScript is an Object Oriented Programming language
too . But used in billions of Web pages to add Functionality,
Validate Forms, Communicate with the Server, and
Interactivity.
46
https://www.facebook.com/Oxus20
All web Designing Languages are
Programming Language?
No !!!
» Because all languages don’t have specification of a
programming language like Classes ,Variables, Loops,
Conditions and … . Like HTML,CSS
» But PHP, JSP and ASP are OOP. we have Classes
functions and other characteristic of programming
language in these Web Server languages.
» Just JavaScript is a client side and a programming
language too. 47
https://www.facebook.com/Oxus20
YES !!!
» All Client side and Server side languages are
interpreted by the every browser that installed on the
visitors computer.
» All languages that interpreted aren’t independent.
» All Client side languages need to Browser, and all
Server side languages need to Server for interpreted.
48
https://www.facebook.com/Oxus20
Can Web Languages be Interpreted?
All DBMSes are Servers?
YES !!!
» All DBMSes are Servers because they
provide services to manipulate and
access the Databases and use from them.
˃ MySQL
˃ SQL Server
˃ Oracle
49
https://www.facebook.com/Oxus20
How can we Connected MySQL to
PHP?
It’s as easy as 1-2-3!
» The syntax for the mysql_connect()
function is:
$DBConnect = mysql_connect( "host" , "user",
“password" );
The syntax for the mysql_select_db() function is:
mysql_select_db( database [, connection] );
50
https://www.facebook.com/Oxus20
Where Can we Download the Tools?
» Windows Users
˃ http://www.wampserver.com/en/
» MAC Users
˃ http://www.mamp.info/en/
» Linux Users
˃ http://lamphowto.com
51
https://www.facebook.com/Oxus20
END
https://www.facebook.com/Oxus20
52

More Related Content

PPTX
malware analysis
DOCX
Chapter 9 & chapter 10 solutions
PDF
Tech talk with lampro mellon an open source solution for accelerating verific...
PDF
Prompt Engineering | Beginner's Guide - For You
PPTX
Generative AI, WiDS 2023.pptx
PDF
Digital Security by Design: Security and Legacy at Microsoft - Matthew Parkin...
 
PDF
Royal Bank of Scotland Case Study
DOCX
Chapter 5: Names, Bindings and Scopes (review Questions and Problem Set)
malware analysis
Chapter 9 & chapter 10 solutions
Tech talk with lampro mellon an open source solution for accelerating verific...
Prompt Engineering | Beginner's Guide - For You
Generative AI, WiDS 2023.pptx
Digital Security by Design: Security and Legacy at Microsoft - Matthew Parkin...
 
Royal Bank of Scotland Case Study
Chapter 5: Names, Bindings and Scopes (review Questions and Problem Set)

What's hot (20)

PPTX
Superscalar processor
PPTX
Phishing awareness
PDF
Impact of AI on Call Centers
PDF
Uç Nokta Güvenliği
PDF
Awesome Prompts Naveed
PDF
Emertxe Certified Embedded Professional (ECEP) : Induction
PPTX
computer forensics
PPTX
Cyber Security 03
PDF
“Responsible AI: Tools and Frameworks for Developing AI Solutions,” a Present...
ODP
Specifications pattern
PPTX
Step by Step Beginner's Guide on Workday Integration
PDF
PPT
Problem Solving Techniques
PPT
An introduction to Competitive Programming
PPT
What is SPAM?
PPTX
Importance Of A Security Policy
PDF
Effort estimation for software development
PDF
Rahul Chauhan Resume - Data Scientist.pdf
PDF
How Does Generative AI Actually Work? (a quick semi-technical introduction to...
PPTX
chatbots presentation .pptx
Superscalar processor
Phishing awareness
Impact of AI on Call Centers
Uç Nokta Güvenliği
Awesome Prompts Naveed
Emertxe Certified Embedded Professional (ECEP) : Induction
computer forensics
Cyber Security 03
“Responsible AI: Tools and Frameworks for Developing AI Solutions,” a Present...
Specifications pattern
Step by Step Beginner's Guide on Workday Integration
Problem Solving Techniques
An introduction to Competitive Programming
What is SPAM?
Importance Of A Security Policy
Effort estimation for software development
Rahul Chauhan Resume - Data Scientist.pdf
How Does Generative AI Actually Work? (a quick semi-technical introduction to...
chatbots presentation .pptx
Ad

Viewers also liked (20)

PPT
HTML5 WebSocket: The New Network Stack for the Web
PDF
Html5 intro
PDF
HTML5 and the web of tomorrow!
PPT
Yeoman
PDF
Yeoman AngularJS and D3 - A solid stack for web apps
PPTX
Full-Stack User Experiences: A Marriage of Design & Technology (Dawn Ressel a...
PPTX
The Next Generation of Continuous Delivery
PDF
Full stack development with Node and NoSQL - Austin Node.JS Group - October ...
PDF
Intro to D3: Data-Driven Documents
PDF
Responsive Web Design Basics
PPTX
Architecture & Workflow of Modern Web Apps
PDF
Web Development with HTML5, CSS3 & JavaScript
PDF
UX Design for the Responsive Web - UX London 2014 Workshop
PDF
BTK Designing for the web 2016 - UX
PDF
Modern Web Applications Utilizing HTML5 (Dev Con TLV 06-2013)
PDF
Design Process in the Responsive Age
PPTX
UrbanCode Deploy course and product overview slides
PDF
What is ux?
PDF
UX Design + UI Design: Injecting a brand persona!
PDF
Continuous Delivery with Jenkins Enterprise and IBM UrbanCode Deploy
HTML5 WebSocket: The New Network Stack for the Web
Html5 intro
HTML5 and the web of tomorrow!
Yeoman
Yeoman AngularJS and D3 - A solid stack for web apps
Full-Stack User Experiences: A Marriage of Design & Technology (Dawn Ressel a...
The Next Generation of Continuous Delivery
Full stack development with Node and NoSQL - Austin Node.JS Group - October ...
Intro to D3: Data-Driven Documents
Responsive Web Design Basics
Architecture & Workflow of Modern Web Apps
Web Development with HTML5, CSS3 & JavaScript
UX Design for the Responsive Web - UX London 2014 Workshop
BTK Designing for the web 2016 - UX
Modern Web Applications Utilizing HTML5 (Dev Con TLV 06-2013)
Design Process in the Responsive Age
UrbanCode Deploy course and product overview slides
What is ux?
UX Design + UI Design: Injecting a brand persona!
Continuous Delivery with Jenkins Enterprise and IBM UrbanCode Deploy
Ad

Similar to Web Design and Development Life Cycle and Technologies (20)

PDF
Web Design and Development Life Cycle and Technologies
PDF
Making Of PHP Based Web Application
PPT
Introduction To Website Development
PPTX
Web dev-101
PPT
Web Development Intro
PPT
The World of Web Development - 2017
PPTX
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
PPTX
Web Development Technologies
PPT
How develop a web application?
PDF
Fundamental Internet Programming.pdf
PPT
Website design company in delhi ncr
PPTX
3 dot technologies by deepak modi
PDF
3 dot technologies by deepak modi
PPTX
ashish ppt webd.pptx
PPTX
1 Intro of web technology and sciences .pptx
PPTX
Internship full stack developer ppt report .pptx
PDF
ppt-190816105541 (2).pdf
PPTX
ppt of web designing and development
PPTX
internship presentation 123445667890987a
DOC
Web Design and Development Life Cycle and Technologies
Making Of PHP Based Web Application
Introduction To Website Development
Web dev-101
Web Development Intro
The World of Web Development - 2017
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
Web Development Technologies
How develop a web application?
Fundamental Internet Programming.pdf
Website design company in delhi ncr
3 dot technologies by deepak modi
3 dot technologies by deepak modi
ashish ppt webd.pptx
1 Intro of web technology and sciences .pptx
Internship full stack developer ppt report .pptx
ppt-190816105541 (2).pdf
ppt of web designing and development
internship presentation 123445667890987a

More from Abdul Rahman Sherzad (20)

PDF
Data is the Fuel of Organizations: Opportunities and Challenges in Afghanistan
PDF
PHP Unicode Input Validation Snippets
PDF
Iterations and Recursions
PDF
Sorting Alpha Numeric Data in MySQL
PDF
PHP Variable variables Examples
PDF
Cross Join Example and Applications
PDF
Applicability of Educational Data Mining in Afghanistan: Opportunities and Ch...
PDF
Web Application Security and Awareness
PDF
Database Automation with MySQL Triggers and Event Schedulers
PDF
Mobile Score Notification System
PDF
Herat Innovation Lab 2015
PDF
Evaluation of Existing Web Structure of Afghan Universities
PDF
PHP Basic and Fundamental Questions and Answers with Detail Explanation
PDF
Java Applet and Graphics
PDF
Fundamentals of Database Systems Questions and Answers
PDF
Everything about Database JOINS and Relationships
PDF
Create Splash Screen with Java Step by Step
PDF
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
PDF
Java Virtual Keyboard Using Robot, Toolkit and JToggleButton Classes
PDF
Java Unicode with Live GUI Examples
Data is the Fuel of Organizations: Opportunities and Challenges in Afghanistan
PHP Unicode Input Validation Snippets
Iterations and Recursions
Sorting Alpha Numeric Data in MySQL
PHP Variable variables Examples
Cross Join Example and Applications
Applicability of Educational Data Mining in Afghanistan: Opportunities and Ch...
Web Application Security and Awareness
Database Automation with MySQL Triggers and Event Schedulers
Mobile Score Notification System
Herat Innovation Lab 2015
Evaluation of Existing Web Structure of Afghan Universities
PHP Basic and Fundamental Questions and Answers with Detail Explanation
Java Applet and Graphics
Fundamentals of Database Systems Questions and Answers
Everything about Database JOINS and Relationships
Create Splash Screen with Java Step by Step
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Java Virtual Keyboard Using Robot, Toolkit and JToggleButton Classes
Java Unicode with Live GUI Examples

Recently uploaded (20)

PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Basic Mud Logging Guide for educational purpose
PPTX
Pharma ospi slides which help in ospi learning
PDF
Pre independence Education in Inndia.pdf
PDF
Introduction-to-Social-Work-by-Leonora-Serafeca-De-Guzman-Group-2.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Open Quiz Monsoon Mind Game Final Set.pptx
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
Basic Mud Logging Guide for educational purpose
Pharma ospi slides which help in ospi learning
Pre independence Education in Inndia.pdf
Introduction-to-Social-Work-by-Leonora-Serafeca-De-Guzman-Group-2.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Open Quiz Monsoon Mind Game Final Set.pptx
TR - Agricultural Crops Production NC III.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Week 4 Term 3 Study Techniques revisited.pptx
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
O7-L3 Supply Chain Operations - ICLT Program
STATICS OF THE RIGID BODIES Hibbelers.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
2.FourierTransform-ShortQuestionswithAnswers.pdf

Web Design and Development Life Cycle and Technologies

  • 1. https://www.facebook.com/Oxus20 oxus20@gmail.com Web Design & Development Life Cycle and Technologies Web Design & Development Web Development Life Cycle Web Essential Questions Review Prepared By: Samana Zia Edited By: Abdul Rahman Sherzad
  • 3. Application » Application is a term for a set of instructions Which makes a computer to perform a task. » The set of instructions are commonly known as a program. » Many programs are not applications, a program with a User Interface is an application. 3 https://www.facebook.com/Oxus20
  • 4. Types of Applications » Desktop Applications » Web Applications 4 https://www.facebook.com/Oxus20
  • 5. Desktop Application » Software development began with Desktop Applications. » A desktop application means any software that can be installed on a single computer (laptop or desktop) and used to perform specific tasks. » Different type of desktop applications: ˃ Application for Communication (Microsoft Outlook) ˃ Application for Data Analysis and Diagram (Microsoft Excel) ˃ Application for Presentation and Graphic ( Microsoft PowerPoint, Adobe Photoshop) 5 https://www.facebook.com/Oxus20
  • 6. Web Application » A Web Application is any application that uses a Browser as a client. » Online Shopping ˃ eBay.com ˃ Amazon.com ˃ etc. » Social Web Application ˃ Facebook.com ˃ Twitter.com ˃ etc. 6 https://www.facebook.com/Oxus20
  • 7. Types of Web Applications » Client-side Web Applications » Server-side Web Applications 7 https://www.facebook.com/Oxus20
  • 8. Client-side Web Applications » Applications on the World Wide Web (www) that run on the users and clients PCs and are executed by the browser installed on the user’s computer. » Examples: ˃ Java Applets ˃ HTML ˃ JavaScript 8 https://www.facebook.com/Oxus20
  • 9. JavaScript » A scripting language used to design interactive Websites. » A JavaScript is a object oriented language that can be used to store and retrieve information on the visitor's computer. 9 https://www.facebook.com/Oxus20
  • 10. AJAX (Asynchronous JavaScript and XML) » AJAX is not a new programming language, but a new way to use existing standards. » AJAX is the art of exchanging data with a server, and update parts of a web page without reloading the whole page. » Technologies combined together include the followings: ˃ HTML or XHTML ˃ Cascading Style Sheets ˃ JavaScript ˃ XML 10 https://www.facebook.com/Oxus20
  • 11. J-Query » A free and open source JavaScript library, that is used by Web developers to navigate HTML documents, handle events, perform animations and add Ajax interactions to Web pages. 11 https://www.facebook.com/Oxus20
  • 12. JAVA Applet » JAVA is a high-level programming language used to create applications for Desktop, Mobile, and Web. » Java Applets are programs that are embedded in other applications, typically in web pages displayed in a web browser on the client-side. 12 https://www.facebook.com/Oxus20
  • 13. Sever Side Application » Web-based application that runs on the Web Server. ˃ ASP (Active Server Pages) ˃ PHP (PHP: Hypertext Preprocessor) ˃ and other technologies can be manipulated by the server side before sending the web page to the client. 13 https://www.facebook.com/Oxus20
  • 14. What is a Website? » A website is an address (location) on the World Wide Web(www) that contains your web pages. » Basically, a website is your personal online communications connection to the rest of the world. » A website is totally different from any other type of publishing, advertising or communications media. 14 https://www.facebook.com/Oxus20
  • 15. Website Layers » Front-End ˃ HTML ˃ CSS ˃ JavaScript » Back-End ˃ DBMS • MySQL • SQL Server • Oracle • SQLite ˃ Plain Files ˃ XML Files 15 https://www.facebook.com/Oxus20
  • 16. HTML ( Hyper Text Markup Language) Definition Example » With HTML you can create your own Website structure and layouts. » HTML is not a programming language » HTML is a markup language with a set of markup tags. <html> <head> <title> welcome</title> </head> <body> <h1> Hello HTML</h1> </body> </html> 16 https://www.facebook.com/Oxus20
  • 17. CSS (Cascading Style Sheet) » CSS is for control the style and layout of multiple Web pages all at once. » CSS affects all pages to which it is linked. » CSS separate design from Content. <html> <head> <style> h1 { font-style: italic; color: red; font-family: "Verdana, Arial, sans-serif"; font-size: 12pt; color: blue; } </style> </head> <body> <h1> Content </h1> </body> </html> https://www.facebook.com/Oxus20 17 ExampleDefinition
  • 18. Three Ways to Insert CSS 18 https://www.facebook.com/Oxus20 » There are three ways of inserting a style sheet ˃ External Style Sheet ˃ Internal Style Sheet ˃ Inline Style Sheet
  • 19. JavaScript Definition Example » A scripting language used to design interactive Web sites. » JavaScript allows developers to create interactive objects such as pop-up boxes, and drop-down menus…. <html> <head> <script type="text/javascript"> document.write( Date() ); </script> </head> </html> 19 https://www.facebook.com/Oxus20
  • 20. PHP » PHP is a server-side scripting language » A powerful language for making dynamic and interactive Website and web applications; same as ASP and JSP does. » PHP executed on the server and supports many databases (MSQL, Oracle, Generic ODBC, etc.) » PHP is open source and free to download ˃ <?php echo date("Y/m/d"); ?> 20 https://www.facebook.com/Oxus20
  • 21. Database » A database is a collection of related data. » By data, we mean known facts that can be recorded and that have implicit meaning. ˃ For example, consider the names, telephone numbers, and addresses of the people you know. You may have recorded this data in an indexed address book or you may have stored it on a hard drive, using a personal computer and software such as Microsoft Access or Excel. » This collection of related data with an implicit meaning is a database. 21 https://www.facebook.com/Oxus20
  • 22. MySQL DBMS » MySQL is a fast, easy-to-use RDBMS being used for many small and big businesses. » MySQL works on many operating systems and with many languages including PHP, PERL, C, C++, JAVA, etc . » MySQL is very friendly to PHP, the most appreciated language for web development. 22 https://www.facebook.com/Oxus20
  • 24. Web Development Life Cycle 24 https://www.facebook.com/Oxus20
  • 25. Web Development Life Cycle 25 https://www.facebook.com/Oxus20
  • 29. Step 4: Planning the Content 29 https://www.facebook.com/Oxus20
  • 41. Final Step Deploy a Website On the Server » Once you have decided to establish a web site there are three steps to getting it online » Get a domain name - This is your personal/private address on the Web. » Find a web hosting service- Here is where your website will reside . Free vs Private Web Hosting » Design, build and upload your website - The process of website creation. 41 https://www.facebook.com/Oxus20
  • 43. Why is Ajax an Important Tool in Website Development? » Ajax allows Web site developers to combine multiple Web design tools such as JavaScript and XML to improved client side usability and faster application loading time for end users and businesses. » Ajax allows asynchronous retrieval of data from the server without disturbing the display or behavior of the web pages that are in use. 43 https://www.facebook.com/Oxus20
  • 44. How are HTML, SGML and XHTML used in Website Development? » HTML , SGML & XHTML are all markup languages used to develop documents for the Web. 44 https://www.facebook.com/Oxus20
  • 45. Are Static and Dynamic Website the Same? NO !!! » In the static website all data are written in the HTML pages, and haven’t Database layer. » But all dynamic websites have separated layer for Insert, Update and Delete data are called web backend. 45 https://www.facebook.com/Oxus20
  • 46. Are Java and JavaScript the Same? NO !!! Java and JavaScript are two completely different languages in both concept and design! » Java is an Object Oriented Programming language ,that be compiled before it can display properly on the web. You can use java in your HTML page with using <APPLET>tag . » JavaScript is an Object Oriented Programming language too . But used in billions of Web pages to add Functionality, Validate Forms, Communicate with the Server, and Interactivity. 46 https://www.facebook.com/Oxus20
  • 47. All web Designing Languages are Programming Language? No !!! » Because all languages don’t have specification of a programming language like Classes ,Variables, Loops, Conditions and … . Like HTML,CSS » But PHP, JSP and ASP are OOP. we have Classes functions and other characteristic of programming language in these Web Server languages. » Just JavaScript is a client side and a programming language too. 47 https://www.facebook.com/Oxus20
  • 48. YES !!! » All Client side and Server side languages are interpreted by the every browser that installed on the visitors computer. » All languages that interpreted aren’t independent. » All Client side languages need to Browser, and all Server side languages need to Server for interpreted. 48 https://www.facebook.com/Oxus20 Can Web Languages be Interpreted?
  • 49. All DBMSes are Servers? YES !!! » All DBMSes are Servers because they provide services to manipulate and access the Databases and use from them. ˃ MySQL ˃ SQL Server ˃ Oracle 49 https://www.facebook.com/Oxus20
  • 50. How can we Connected MySQL to PHP? It’s as easy as 1-2-3! » The syntax for the mysql_connect() function is: $DBConnect = mysql_connect( "host" , "user", “password" ); The syntax for the mysql_select_db() function is: mysql_select_db( database [, connection] ); 50 https://www.facebook.com/Oxus20
  • 51. Where Can we Download the Tools? » Windows Users ˃ http://www.wampserver.com/en/ » MAC Users ˃ http://www.mamp.info/en/ » Linux Users ˃ http://lamphowto.com 51 https://www.facebook.com/Oxus20