SlideShare a Scribd company logo
1 of 76
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>
[object Object]
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
[object Object]
Gedit, Notepad++, Notepad,..
Save as .htm or .html extension
[object Object]
<  >  -  Opening Tag
</ >  - Closing Tag
[object Object]
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
[object Object]
<head>
<title>  My first web page </title>
</head>
<body>
<h1>Hello everyone </h1>
</body>
</html>
[object Object]
The element has a start tag <html> and an end tag </html>
The element content is another HTML element (the body)
[object Object]
The element has a start tag <head> and an end tag </head>
The element content is another HTML element (title of the webpage)
[object Object]
The element has a start tag <body> and an end tag </body>
The element content is another HTML element (a paragraph)
[object Object]
<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 -->
[object Object]
<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 ,[object Object]
Linux ,[object Object]
DEFINITION LIST <dl> <dt>Windows</dt> <dd>Vista</dd> <dt>Linux</dt> <dd>Fedora</dd> </dl>  What it can do? Windows  Vista Linux  Fedora
[object Object]
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?
[object Object]
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))
[object Object]
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
[object Object]
The query and update commands form the DML part of SQL: ,[object Object]
UPDATE  - updates data in a database
DELETE  - deletes data from a database

More Related Content

What's hot

Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)
club23
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
Ashwin Dinoriya
 
Structure query language (sql)
Structure query language (sql)Structure query language (sql)
Structure query language (sql)
Nalina Kumari
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
mlackner
 

What's hot (20)

Ankit
AnkitAnkit
Ankit
 
Php
PhpPhp
Php
 
HTML Tables and Forms
HTML Tables and Forms HTML Tables and Forms
HTML Tables and Forms
 
Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)
 
HTML Table Tags
HTML Table TagsHTML Table Tags
HTML Table Tags
 
Intro To TSQL - Unit 2
Intro To TSQL - Unit 2Intro To TSQL - Unit 2
Intro To TSQL - Unit 2
 
Sql
SqlSql
Sql
 
Html&css lesson 2
Html&css lesson 2Html&css lesson 2
Html&css lesson 2
 
45 Essential SQL Interview Questions
45 Essential SQL Interview Questions45 Essential SQL Interview Questions
45 Essential SQL Interview Questions
 
form view
form viewform view
form view
 
SQL
SQLSQL
SQL
 
SAS Proc SQL
SAS Proc SQLSAS Proc SQL
SAS Proc SQL
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
 
Structure query language (sql)
Structure query language (sql)Structure query language (sql)
Structure query language (sql)
 
Introduction to SQL
Introduction to SQLIntroduction to SQL
Introduction to SQL
 
Oracle naveen Sql
Oracle naveen   SqlOracle naveen   Sql
Oracle naveen Sql
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
Introduction to sql
Introduction to sqlIntroduction to sql
Introduction to sql
 
web technology
web technologyweb technology
web technology
 
Css ppt - Cascading Style Sheets
Css ppt - Cascading Style SheetsCss ppt - Cascading Style Sheets
Css ppt - Cascading Style Sheets
 

Viewers also liked (6)

Curso linksaldeia nov12
Curso linksaldeia nov12Curso linksaldeia nov12
Curso linksaldeia nov12
 
Exposicion!
Exposicion!Exposicion!
Exposicion!
 
Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...
Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...
Algunas dimensiones profesionalizacion_docentes_representaciones_temas_agenda...
 
Armstrong
ArmstrongArmstrong
Armstrong
 
20320140501012
2032014050101220320140501012
20320140501012
 
ACROSS: R&D Project
ACROSS: R&D ProjectACROSS: R&D Project
ACROSS: R&D Project
 

Similar to Web Developement Workshop (Oct 2009) Slides

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

Introduction To Lamp
Introduction To LampIntroduction To Lamp
Introduction To Lamp
 
Sql 2006
Sql 2006Sql 2006
Sql 2006
 
Php
PhpPhp
Php
 
PHP MySQL
PHP MySQLPHP MySQL
PHP MySQL
 
Processing XML with Java
Processing XML with JavaProcessing XML with Java
Processing XML with Java
 
6 311 W
6 311 W6 311 W
6 311 W
 
6 311 W
6 311 W6 311 W
6 311 W
 
test
testtest
test
 
Open Source Package PHP & MySQL
Open Source Package PHP & MySQLOpen Source Package PHP & MySQL
Open Source Package PHP & MySQL
 
Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9Open Source Package Php Mysql 1228203701094763 9
Open Source Package Php Mysql 1228203701094763 9
 
MYSQL
MYSQLMYSQL
MYSQL
 
Diva10
Diva10Diva10
Diva10
 
My sql.ppt
My sql.pptMy sql.ppt
My sql.ppt
 
Mysqlppt
MysqlpptMysqlppt
Mysqlppt
 
Presentasi Kelompok 25 PW A+B
Presentasi Kelompok 25 PW A+BPresentasi Kelompok 25 PW A+B
Presentasi Kelompok 25 PW A+B
 
Tugas pw [kelompok 25]
Tugas pw [kelompok 25]Tugas pw [kelompok 25]
Tugas pw [kelompok 25]
 
ASP.NET 10 - Data Controls
ASP.NET 10 - Data ControlsASP.NET 10 - Data Controls
ASP.NET 10 - Data Controls
 
Sql Server 2008 New Programmability Features
Sql Server 2008 New Programmability FeaturesSql Server 2008 New Programmability Features
Sql Server 2008 New Programmability Features
 
Lect_html1
Lect_html1Lect_html1
Lect_html1
 
Struts2
Struts2Struts2
Struts2
 

Recently uploaded

Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
FIDO Alliance
 

Recently uploaded (20)

(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 Warsaw
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptx
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Intro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptxIntro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptx
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The InsideCollecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
 
ERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage IntacctERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage Intacct
 

Web Developement Workshop (Oct 2009) Slides