Web Server Architecture/Hosting Capstone Project2 Name-ASFAQUE KHAN Regno
Contents ● Introduction ● Sequence Diagram ● Flow chart ● Design and coding
Introduction ● Web server can refer to either the hardware (the computer) or the software (the computer application) that helps to deliver content that can be accessed through the Internet. ● The most common use of web servers is to host web sites but there are other uses like data storage or for running enterprise applications.
Introduction(contd) ● The primary function of a web server is to deliver web pages on the request to clients. ● This means delivery of HTML documents and any additional content that may be included by a document, such as images, style sheets and scripts. ● Web servers are not always used for serving the world wide web.
Introduction(contd.) ●1●1
Sequence Diagram ●2●2
Flow chart ●3●3
Flow chart(contd.) ●3●3
Design and coding ● User interface
View login ● <?php require("sheader.php"); ?>
View login(contd.) ● <?php
View login(contd.) ●2●2
User home ● <?php require("uheader.php"); ?> Hosting Dashboard
User home(contd.) ●
User login(contd.) ●
User home(contd.) ●2●2
View Domain ● ?php require("uheader.php"); ?> Search Domains
View Domain(contd.) ● if($dname!="") { $q = "select * from domains where dname='$dname'"; $data = mysql_query($q); $rnum = mysql_num_rows($data);
View Domain(contd.) ●w●w
Thank you