SlideShare a Scribd company logo
SCCI'15 - Devology - Session 9 - a quick revision on designing and developing.
A quick Revision
Changing HTML Elements using JS
<body>
<p id=“SCCI">Seek the peak</p>
</body>
Before
<body>
<p id=“SCCI">Seek the peak</p>
<script>
document.getElementById(“SCCI").innerHTML =
“Be your own hero";
</script>
</body>
Changing HTML Elements using JS
After
Pop up code
function div_show() {
document.getElementById(‘id').style.display = "block";
}
function div_hide(){
document.getElementById(‘id').style.display = "none";
}
SCCI'15 - Devology - Session 9 - a quick revision on designing and developing.
Validation in JS
function check_empty() {
if (document.getElementById('name').value == "" ||
document.getElementById('email').value == "" ||
document.getElementById('msg').value == "") {
alert("Fill All Fields !");
} else {
document.getElementById('form').submit();
alert("Form Submitted Successfully...");
}
}
Validation in JS
Validation in JS
How to connect to a
DATABASE?
<?php
$conn = mysqli_connect("localhost", "root", "",
"devology");
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
?>
SQL
SELECT * FROM Table_name;
SELECT column1,2,3 FROM Table_name
<?php
$sql = "SELECT id, user_name, email
FROM teams";
$result = mysqli_query($conn, $sql);
?>
INSERT INTO Tabel_name(Column1,2,3)
VALUES(‘value1’,’2’,’3’);
<?php
$sql = "INSERT INTO teams(user_name,
password, email, phone_number)
VALUES (‘AssemSalem', 'Devology',
‘asemsalem@gmail.com‘, ‘01116877970')";
$result = mysqli_query($conn, $sql);
?>
UPDATE Tabel_name
SET column1=‘value1’, column2=‘value2’
WHERE column3=‘value3’;
<?php
$sql = "UPDATE teams SET
user_name=‘MahmoudBahaa'
WHERE password= 'Devology' ";
$result = mysqli_query($conn, $sql);
?>
DELETE FROM Tabel_name
WHERE some_column=‘some_column’;
<?php
$sql = "DELETE FROM teams
WHERE user_name= ‘AssemSalem' ";
$result = mysqli_query($conn, $sql);
?>
Any Questions?
Thank you!

More Related Content

PPT
PDF
jQuery State of the Union - Yehuda Katz
PPTX
Javascipt
PPT
Introduction to j query
PPSX
JQuery Comprehensive Overview
PPTX
React for WinRT apps
PDF
JSLab. Ингвар Степанян. "React в разработке нативных WinRT/Windows Phone прил...
jQuery State of the Union - Yehuda Katz
Javascipt
Introduction to j query
JQuery Comprehensive Overview
React for WinRT apps
JSLab. Ингвар Степанян. "React в разработке нативных WinRT/Windows Phone прил...

What's hot (7)

PPTX
Introduction to React and MobX
KEY
You Can Kick-Ass Too, AtlasCamp US 2012
KEY
Web storage
PPTX
MVVM Magic in SharePoint 2010 using Knockoutjs!
PPTX
Introduction to j_query
PPTX
Client Web
PPTX
Streaming Data Pipelines with MongoDB and Kafka at ao.com
Introduction to React and MobX
You Can Kick-Ass Too, AtlasCamp US 2012
Web storage
MVVM Magic in SharePoint 2010 using Knockoutjs!
Introduction to j_query
Client Web
Streaming Data Pipelines with MongoDB and Kafka at ao.com
Ad

Viewers also liked (7)

PPTX
SCCI'15 - Markative - Session5 - Designing concepts
PPTX
SCCI'15 - Markative - session 7 - Advertising
PPTX
SCCI'15 - Markative - Photography
PPTX
SCCI'15 - markative - session 3 - Consumer behavior
PPTX
SCCI'15 - Markative - Session 8 - marketing plan
PPTX
SCCI'15-Soft-skills-session 6- Goal setting
PPTX
SCCI'15-Soft-skills-session 8-How to be effective.
SCCI'15 - Markative - Session5 - Designing concepts
SCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - Photography
SCCI'15 - markative - session 3 - Consumer behavior
SCCI'15 - Markative - Session 8 - marketing plan
SCCI'15-Soft-skills-session 6- Goal setting
SCCI'15-Soft-skills-session 8-How to be effective.
Ad

Similar to SCCI'15 - Devology - Session 9 - a quick revision on designing and developing. (20)

KEY
The Principle of Hybrid App.
PDF
22 j query1
PPTX
Java script cookies
PPTX
Jquery introduction
PPTX
J query1
PDF
HTML5 and Mobile
PDF
Javascript basic programs
PPTX
Entity framework db model的驗證機制 20130914
PDF
Building iPhone Web Apps using "classic" Domino
PPTX
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
PPTX
lec 14-15 Jquery_All About J-query_.pptx
KEY
Google
PPTX
計算機概論20161212
PDF
Devoxx 2014-webComponents
PPTX
2.java script dom
PPT
Top Ten Web Defenses - DefCamp 2012
PDF
The Future of CSS with Web components
PDF
The Future of CSS with Web Components
PPT
Form demoinplaywithmysql
PDF
Building Reusable Custom Elements With Angular
The Principle of Hybrid App.
22 j query1
Java script cookies
Jquery introduction
J query1
HTML5 and Mobile
Javascript basic programs
Entity framework db model的驗證機制 20130914
Building iPhone Web Apps using "classic" Domino
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
lec 14-15 Jquery_All About J-query_.pptx
Google
計算機概論20161212
Devoxx 2014-webComponents
2.java script dom
Top Ten Web Defenses - DefCamp 2012
The Future of CSS with Web components
The Future of CSS with Web Components
Form demoinplaywithmysql
Building Reusable Custom Elements With Angular

More from SCCI-CU (16)

PPTX
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
PPTX
SCCI'15 - Devology - Session 7 - Data and Databases
PPTX
SCCI'15 - Devology - Session 6 - Servers and PHP
PPTX
SCCI'15 - Devology - Session 5 - How to make my own website?
PPTX
SCCI'15 - Markative - session 5 - Inbound marketing
PPTX
SCCI'15 - Markative - session 4 - Direct marketing
PPTX
SCCI'15 - SoftSkills - Session 4 presentation skills
PPTX
SCCI'15 - Devology - Session 4 Javascript
PPTX
SCCI'15 - soft-skills - Session 3- self-awareness
PPTX
SCCI'15 - Techsolve - Session 3 - Problem Solving
PPTX
SCCI'15 - Devology - Session 2 - UI&CSS
PPTX
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
PPTX
SCCI'15 - Soft Skills - Session 1 - Interviewing Skills
PPTX
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
PPTX
SCCI'15 - Investeneur - Session1 - Starting a business
PPTX
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
SCCI'15 - Devology - Session 7 - Data and Databases
SCCI'15 - Devology - Session 6 - Servers and PHP
SCCI'15 - Devology - Session 5 - How to make my own website?
SCCI'15 - Markative - session 5 - Inbound marketing
SCCI'15 - Markative - session 4 - Direct marketing
SCCI'15 - SoftSkills - Session 4 presentation skills
SCCI'15 - Devology - Session 4 Javascript
SCCI'15 - soft-skills - Session 3- self-awareness
SCCI'15 - Techsolve - Session 3 - Problem Solving
SCCI'15 - Devology - Session 2 - UI&CSS
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
SCCI'15 - Soft Skills - Session 1 - Interviewing Skills
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur - Session1 - Starting a business
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project management

Recently uploaded (20)

PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Anesthesia in Laparoscopic Surgery in India
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 Đ...
PDF
Classroom Observation Tools for Teachers
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Lesson notes of climatology university.
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
Final Presentation General Medicine 03-08-2024.pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Microbial disease of the cardiovascular and lymphatic systems
Supply Chain Operations Speaking Notes -ICLT Program
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Anesthesia in Laparoscopic Surgery in India
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Classroom Observation Tools for Teachers
GDM (1) (1).pptx small presentation for students
Lesson notes of climatology university.
Microbial diseases, their pathogenesis and prophylaxis
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
Pharmacology of Heart Failure /Pharmacotherapy of CHF
2.FourierTransform-ShortQuestionswithAnswers.pdf

SCCI'15 - Devology - Session 9 - a quick revision on designing and developing.