SlideShare a Scribd company logo
Web Development  BY :  KARTIK    :  http://www.kar2905.wordpress.com PRATIK  :  http://pratik3d.blogspot.com SAURABH  : saurabh-suman@hotmail.com
<html> <body> <ul> <li>HTML ( A Fast run through) </li> <li>MYSQL </li> <li>PHP </li> <li>Login Script Demonstration </li> </ul> </body> </html>
HYPER TEXT MARKUP LANGAUGE
DEVELOPED BY  : World Wide Web Consortium & WHATWG
Type code : TEXT
Extended from :  SGML
Extended to :  XHTML
Standard(s)  :  W3C HTML 4.01   W3C HTML 3.2
In short it is the language used to design Web Pages
Use any text editor
Gedit, Notepad++, Notepad,..
Save as .htm or .html extension
A tag is : Non-hierarchical keyword or term assigned to a piece of information
<  >  -  Opening Tag
</ >  - Closing Tag
The element content is everything between the start and the end tag  ( <p>Hello</p> )
Some HTML elements have empty content( <br /> )
Most HTML elements can have attributes
Its not case sensitive  eg <p> means the same as <P> . But W3C (?) recommends lower case
<html>
<head>
<title>  My first web page </title>
</head>
<body>
<h1>Hello everyone </h1>
</body>
</html>
The <html> element defines the whole HTML document.
The element has a start tag <html> and an end tag </html>
The element content is another HTML element (the body)
The <head> element defines the head of the HTML document
The element has a start tag <head> and an end tag </head>
The element content is another HTML element (title of the webpage)
The <body> element defines the body of the HTML document
The element has a start tag <body> and an end tag </body>
The element content is another HTML element (a paragraph)
<p> This is a paragraph </p>
<h1>This is a heading </h1>
<h2 ,3 .. 6 > Various headings </h2,3..6>
< a href=“google.com”>This is a link </a>
<img src=“the source” width=“104” />
<br/> : is used to give a line break
<hr/> : is used to give a horizontal line
<!--  this is a comment -->
<b>  BOLD  </b>
<i>  ITALICS  </i>
<big> Big Text </big>
This is<sub>  subscript </sub> and <sup> superscript </sup>
<code>This is computer output</code>
<strong> BOLD  </strong >
Many more tags .. http://www.w3schools.com/tags/default.asp
 HTML elements can have  attributes  Attributes provide  additional information  about the element  Attributes are always specified in  the start tag  Attributes come in name/value pairs like:  name=&quot;value&quot;  Standard attributes :   class ,id , style ,title Attributes
 style=&quot;background-color:yellow&quot;  style=&quot;font-size:10px&quot;  style=&quot;font-family:Times&quot;  style=&quot;text-align:center”  Examples :   <body style=&quot;background-color:yellow&quot;>  <p style=&quot;font-family:courier new; color:red; font-size:20px&quot;>  <a href=“url&quot; style=&quot;background-color:red&quot;>Last Page</a>  Style Attribute
<table border=&quot;1&quot;> <tr> <th>Heading</th> <th>Another Heading</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>  Tables
UNORDERED LIST <ul> <li>Windows</li> <li>Linux</li> </ul>  ORDERED LIST  <ol> <li>Windows</li> <li>Linux</li> </ol>  LIST Windows
Linux 1.Windows 2.Linux
DEFINITION LIST <dl> <dt>Windows</dt> <dd>Vista</dd> <dt>Linux</dt> <dd>Fedora</dd> </dl>  What it can do? Windows  Vista Linux  Fedora
The data is sent to the url specified through GET or POST as specified in the method attribute .
The data is processed by a server side script/page which acts upon the data (eg . Saves it to the database through MYSQL )  Where is the DATA?
SQL is a database computer language
MySQL is a relational database management system and is owned by SUN.
MySQL stands for My Structured Query Language.
So , WHY MySQL  ???
The obvious answer :
MySQL is OPEN SOURCE ..
(GNUKHATA, National Internet Exchange of India (NIXI))
SQL stands for Structured Query Language
SQL lets you access and manipulate databases
SQL is an ANSI (American National Standards Institute) standard
Its not Case Sensitive
It is divided into two : DDL and DML
MySQL can add , delete,update , retrieve  data / records from a database
Data Manipulation Language
The query and update commands form the DML part of SQL: SELECT  - extracts data from a database
UPDATE  - updates data in a database
DELETE  - deletes data from a database

More Related Content

PPT
Ms sql server ii
PPT
MS SQL Server 1
PPT
Csphtp1 18
PPT
HTML (Hyper Text Markup Language)
PPT
Tables and Forms in HTML
PPT
Intro To TSQL - Unit 1
PPT
Intro To TSQL - Unit 3
PPT
Intro To TSQL - Unit 4
Ms sql server ii
MS SQL Server 1
Csphtp1 18
HTML (Hyper Text Markup Language)
Tables and Forms in HTML
Intro To TSQL - Unit 1
Intro To TSQL - Unit 3
Intro To TSQL - Unit 4

What's hot (20)

PDF
PPTX
PPTX
HTML Tables and Forms
PPTX
Html 5-tables-forms-frames (1)
PPTX
HTML Table Tags
PPT
Intro To TSQL - Unit 2
PPT
PPTX
Html&css lesson 2
PDF
45 Essential SQL Interview Questions
PPTX
form view
PPTX
PPT
SAS Proc SQL
PPTX
Subqueries, Backups, Users and Privileges
PPTX
Structure query language (sql)
PPTX
Introduction to SQL
PPT
Oracle naveen Sql
PPT
Html Intro2
DOC
Introduction to sql
PDF
web technology
PPTX
Css ppt - Cascading Style Sheets
HTML Tables and Forms
Html 5-tables-forms-frames (1)
HTML Table Tags
Intro To TSQL - Unit 2
Html&css lesson 2
45 Essential SQL Interview Questions
form view
SAS Proc SQL
Subqueries, Backups, Users and Privileges
Structure query language (sql)
Introduction to SQL
Oracle naveen Sql
Html Intro2
Introduction to sql
web technology
Css ppt - Cascading Style Sheets
Ad

Viewers also liked (6)

PDF
Curso linksaldeia nov12
PPTX
Exposicion!
PDF
Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...
DOC
PDF
20320140501012
PPT
ACROSS: R&D Project
Curso linksaldeia nov12
Exposicion!
Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...
20320140501012
ACROSS: R&D Project
Ad

Similar to Web Developement Workshop (Oct 2009) Slides (20)

PPT
Introduction To Lamp
PPT
Sql 2006
PPT
PPT
Processing XML with Java
PPT
PPT
6 311 W
PPT
6 311 W
PPT
Open Source Package Php Mysql 1228203701094763 9
PPT
Open Source Package PHP & MySQL
PPT
MYSQL
PPT
Diva10
ODP
Mysqlppt
PPTX
Presentasi Kelompok 25 PW A+B
PPTX
Tugas pw [kelompok 25]
PPT
ASP.NET 10 - Data Controls
PPTX
Sql Server 2008 New Programmability Features
PPT
Lect_html1
PPT
Struts2
Introduction To Lamp
Sql 2006
Processing XML with Java
6 311 W
6 311 W
Open Source Package Php Mysql 1228203701094763 9
Open Source Package PHP & MySQL
MYSQL
Diva10
Mysqlppt
Presentasi Kelompok 25 PW A+B
Tugas pw [kelompok 25]
ASP.NET 10 - Data Controls
Sql Server 2008 New Programmability Features
Lect_html1
Struts2

Recently uploaded (20)

PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
Big Data Technologies - Introduction.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Spectroscopy.pptx food analysis technology
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Chapter 3 Spatial Domain Image Processing.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Reach Out and Touch Someone: Haptics and Empathic Computing
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Network Security Unit 5.pdf for BCA BBA.
NewMind AI Weekly Chronicles - August'25-Week II
Big Data Technologies - Introduction.pptx
Machine learning based COVID-19 study performance prediction
The Rise and Fall of 3GPP – Time for a Sabbatical?
sap open course for s4hana steps from ECC to s4
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Spectroscopy.pptx food analysis technology
Assigned Numbers - 2025 - Bluetooth® Document
A comparative analysis of optical character recognition models for extracting...
gpt5_lecture_notes_comprehensive_20250812015547.pdf

Web Developement Workshop (Oct 2009) Slides