Home > Article > Backend Development > PHP newbie road 3_PHP tutorial
b>Learn PHP from a simple program
The online tutorials on the PHP site are already great. This part of the article will make you familiar with PHP. It's impossible for me to miss anything. My purpose is only to allow you to quickly start your PHP programming.
3.1 First Requirements
You must first have a working web server that supports PHP. I assume that all PHP files on your server have the extension .php3.
3.2 Installation of PHP
For the installation configuration of PHP, you can check the special article "Complete PHP Installation Guide" on Taoba website.
3.3 Syntax
From a syntax perspective, PHP language is similar to C language. It can be said that PHP draws on the grammatical features of C language and is improved from C language. We can mix PHP code and HTML code. Not only can we embed PHP scripts into HTML files, we can even embed HTML tags in PHP scripts. Here are a few approaches you can take. You can choose whichever one works best for you and stick with it!
Separate from HTML
Here are the methods you can use:
$#@60;? . . . ?$#@62;
$#@60;?php . . . ?$ #@62;
$#@60;script language="php"$#@62; . . . $#@60;/script$#@62;
$#@60;% . . . %$#@62;
Note: When you use "$#@60;? . . . ?$#@62;" to embed PHP code in an HTML file, it may conflict with XML. At the same time, it can Whether to use this shortened form also depends on the settings of PHP itself. To make your PHP code adaptable to XML and other editors, you can make your PHP code adaptable to XML parsers by adding "php" after the opening question mark. For example: "$#@60;?php. . . ?$#@62;". You can also use script tags like other scripting languages, such as: "$#@60;script language="php"$#@62; . . . $#@60;/script$#@62;".
Statement
Like Perl and C, statements are separated by ";" in PHP. Those separate tags from HTML also indicate the end of a statement.
Comments
PHP supports C, C++ and Unix style comments: