Become a webdsign master


Website Design: The First Step

. Remember from the HTML section that it isThis is an important aspect that differs PHP
one of the core parts of an HTML document. InmySQL from the other languages. PHP/mySQL are
this way you can think of the as the top ofrun from the server, or the computer that
the tree. If you place an element in the bodyyour computer downloaded a web site from.
it is like a branch coming from the top of aHTML/CSS/JavaScript are run after the files
tree to that element and connecting it. Nowhave been downloaded to your computer by your
that there is this connection you can usecomputer  via  the  browser.
JavaScript to be able to change whatever is
at  that  branch.This connection has many important and
difficult implications. One is that you only
The language itself is very similar to c andhave one shot at downloading content from a
is fairly easy to learn. What is difficult isserver. After the page has been downloaded to
understanding how to navigate around the DOMdownload something else you have to reconnect
to  make  dynamic  web  pages.to the server to get fresh content. There are
a few ways to do this, either requesting a
PHP  &  mySQLnew  page  or  by  using  JavaScript.
With the understanding of HTML/CSS/JavaScriptReview
it is possible to make interactive websites.
But what if you want to be able to saveSome final terminology is backend vs.
content that is provided by a viewer of yourfrontend. Frontend is what is being processed
site, i.e. a comment. The most basic use ofby a host (your) computer via the browser.
PHP is to get content submitted from an HTMLThis is done with HTML/CSS/Javascript. You
site  and  put  it  into  a  mySQL  database.have gone to a url and a server (computer)
has sent you some documents. Your browser
A database is like an excel spreadsheet, or alooks at these documents and figures out what
bunch of rows and columns that are able tothey say (HTML) and how to make them
hold many types of information. PHP and mySQLappear(CSS). If it wants to make the content
are the most common and free combination ofmove  around  it  will  use  JavaScript.
script/database languages on the web right
now.The backend is everything the server can do,
this includes providing the HTML/CSS
PHP is considered a scripting language. ThisJavaScript documents to sending off email.
is because it is not compiled, i.e there isThis is done via PHP, and if any content is
no .exe or executable like if you are runningto be stored it is stored using a mySQL
a program on your desktop. Instead when adatabase.
website needs something to happen it calls a
PHP script which is immediately interpretedHopefully this will have provided a basic
by  the  server  that is hosting the website.understanding of the different languages and
aspects of a website.



1 A B C D E 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128