top of page

HTML PHP - From Concept to Difference

When PHP come into the word, the Internet world seems to have found a relatively perfect alternative to a website development language in an ever-growing technological age. We use this language to develop website everyday. But with the neophyte, HTML 's definitions and operational mechanism of PHP, not everyone can explain clearly and specifically.


HTML concept
HTML (HyperText Markup Language) is one of the languages used in web programming. When visiting a website, specifically clicking on links, you will be directed to many different pages, and these pages are called an HTML document (HTML file).

Overview of HTML
An HTML page is made up of many small HTML elements and specified by tags. You can distinguish a website written in HTML or PHP language through its link. At the end of the HTML pages, there are often tails of .HTML or .HTM
HTML, in its true meaning, is a hypertext markup language, so its functions revolve around this element. Specifically, HTML helps to constitute the basic structure on a website (dividing the frame, layout of website components) and contributing to support the declaration of digital files such as videos, music and images. The strength of HTML is its ability to build structures and make web pages go to a method, simultaneously become a complete system. If you want to own a well-structured website that aims to use a variety of elements in text, ask HTML. In fact, HTML contains essential elements that no matter what kind of website our website is, what programming language we communicate to handle data, it still needs HTML language to display content for visitors.
HTML is a simple web programming language. Every web page, every web browser can display HTML well. Currently, the latest version of HTML is HTML 5 with more good features and quality than the older HTML versions.

PHP concept
PHP stands for "Hypertext Preprocessor", previously Personal Home Pages. This is a programming language used to write on the server side (web programming). Currently, there are many languages for writting in servers such as C #, Java, Python and PHP as one of the languages of this group.

Overview of PHP
A PHP file consist of PHP tags and ends with the ".php" extension. Only the server that has installed PHP can interpret PHP scripts. Clients accessing PHP scripts will only require a web browser. Besides, PHP's syntax is similar to C and Java, so programmers can learn and build a product that is relatively fast in comparison with other languages.
PHP code can also be embedded into HTML code and pages easily, or used in conjunction with various web template systems, web content management systems and web frameworks.
PHP is very suitable in writing for the web. It has a simple, fast and compact syntax, easy to learn and time to access PHP shorter than other programming languages, so PHP currently accounts for a relatively large number of programmers, maybe called the biggest. At now, PHP has many open source code (CMS) such as WordPress, OpenCart, NukeViet, … so it is very diverse and adapts most common websites from personal blogs to websites to introduce companies and sales.
Currently the highest version of PHP is PHP7, this is a jumpy version because PHP updated many features to help programmers have more choices. The versions of PHP3 and PHP4 we should not discuss because most servers do not have it installed, which means that currently servers only install PHP5 and PHP7.

Different between Operation of HTML and PHP
To understand the operation mechanism of HTML and PHP is completely different. First of all, you need to know a concept: client-server relations. This relationship takes place when someone visits our site, after they type in the address bar, enter, then the web page is downloaded and displayed on the screen! It's perfectly reasonable, but in the middle of the time after they enter and when the website shows up, what happened in this mechanism? Client means a user, accessing a website through a website address. All web viewers refers to clients.
Server (server): It have only one server. Placing somewhere in the world, the server is a huge, 24-hour networked device (with an extremely fast connection speed), it not only run alone 24 hours a day, but also no one touches, nobody plays anything on it. It only does one task that is to distribute web pages to clients
Server is a computer but there is no screen, because screen is unusable for anything in this situation. Sever’s mechanism is that it contains any web page on hard drive, every time a client accesses web page, it sends the web page to that person.
In the Internet environment, the huge, non-screen giant server works continuously and constantly whenever someone accesses a web page and sends it to clients.
After understanding the client-server relationship. Let's now explore how PHP and HTML work differently.

Firstly, about HTML:
1. The operation process after we access an HTML website have two steps:
2. Client (user) wants to access, view a website. User sends request to server through accessing website address. Let's imagine as: “Server, please send me page example.html”
3. Server responds by putting the website displayed on your screen “Here! This is the website you have just asked to see”

Now to PHP:
It inserts another step between the two steps above, the PHP page is generated by the server before being sent to the client.

The operation steps are as follows:
1. Client sends request through accessing website: “Server, please send me the example.php page”
2. Here, a very important step, the server does not send the website to the client immediately, but it generates the website first. So the client cannot read the php page with anything in it (only the server can read it), the client can only read HTML pages. The server's task is very simple: it transforms the php page into an html page so that the client can read it.
3. Finally, after creating the HTML page, it only has HTML code inside, the server send it to the client: “Here! This is the site you want to see”

The important issue now is to understand, what does generating the php page do and what does the PHP code do in step 2:
PHP code includes command structures. Like the command line we write in programming (such as programming with C, C ++, Java, Python, ...). It requires the server to tell about the time, the number of visitors, ... In short, PHP commands the server, which HTML can't do.

In short way to explain
Bear in mind that the PHP page also contains HTML code, but the server will not touch, in the operation mechanism with PHP, the server only focuses on PHP. Then get the command that PHP give order, then turn it all into HTML.
One special thing, the generated website is only sent to a single client. This means that when someone sends a request to view it again, the server will start generating another PHP page. Note that this generation also takes a period of time (a few milliseconds, depending on the size of the page), It means that the PHP server must be much more powerful than a regular HTML server. If your site is famous, at the same time there may be 30 people accessing it, so the server must be stronger.
 
-- You are worrying whether to choose a reputable address to look for IT jobs or intend to apply for Web, PHP Developer vacancies at top IT companies in Vietnam and Southeast Asia? Please don’t hesitate to click for explore more information about Web Developer positions at: https://www.jt1.asia/top-it-jobs
-- You are an IT Company or IT Employer finding experienced IT candidates but have some difficulties in recruiting. JT1 - IT Recruitment Agency has been providing IT specialists in Web, PHP Developer positions from our database with 20.000+ qualified candidate profiles completely in IT. JT1 has cooperated and satisfy the demand of professionals IT Recruitment for more than 1000 employers all over Vietnam, including leading companies in the IT market. If you have any further questions, please follow and don't hesitate to contact us at: https://www.jt1.asia

_____________________
JT1 - IT Recruitment Agency
Email: hi@jt1.vn
Phone: +8428 6675 6685
More posts at: https://www.jt1.asia/blog Follow us on facebook at: https://www.facebook.com/jt1asia
bottom of page