Home  >  Article  >  Backend Development  >  What are the elements that make up a php dynamic web page?

What are the elements that make up a php dynamic web page?

angryTom
angryTomOriginal
2019-11-20 15:27:523576browse

What are the elements that make up a php dynamic web page?

What are the elements of php dynamic web pages?

There is no difference between the composition of php dynamic web pages and the composition of static web pages. , except that the content of the dynamic web page is obtained from the database. Let’s take a look at the elements that make up a dynamic web page.

1. HTML (Hypertext Markup Language):

The essence of a web page is Hypertext Markup Language. Each part of the file is marked for the browser to parse.

2. CSS (Cascading Style Sheets):

HTML is used for marking, but the marked web pages are messy and poor in appearance. CSS is to convert HTML The marked content is placed reasonably and beautifies the content on the web page.

That is:

HTML is used to build a frame, and CSS is used to beautify the frame.

3. Client-side scripting language (JavaScript) :

Script: a program that cannot run independently and needs a carrier to run it.

Client: browser.

Client-side scripting language: a scripting language that runs on the browser and is used to interact between the website and customers.

The relationship between HTML, CSS, and JavaScript: HTML is used for markup, CSS makes the page more beautifying, and JavaScript is used for interaction. The division of labor is very clear.

HTML, CSS, and JavaScript can make a static website. How to make a static website accessible to others.

4. Web server:

www server, usually the server side refers to the web server.

Commonly used servers: IIS, Apache, Nginx

5. Database:

A place where things are placed, and the database is a warehouse where data is placed.

In the web, it is used to be called by server-side scripting language.

Commonly used databases: Oracle, MySQL, SQL Server, DB2, MariDB

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of What are the elements that make up a php dynamic web page?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn