Home  >  Article  >  Backend Development  >  Can I write php code in an html file?

Can I write php code in an html file?

王林
王林Original
2019-10-19 13:34:227455browse

Can I write php code in an html file?

For an experienced PHP web developer, this is a very easy thing to do. But this is a problem for those new to the PHP programming language. So here’s how to embed PHP code in regular HTML code.

Create a hello script named hello.php:

1    <html>    
2    <head>    
3    <title>PHP Test</title>    
4    </head>    
5    <body>    
6    <?php echo &#39;<p>Hello World</p>&#39;; ?>    
7    </body>    
8    </html>

In the above HTML code, print Hello in the PHP code. Writing PHP code in HTML requires the use of bb9bd6d87db7f8730c53cb084e6b4d2d tags. Integrating PHP and HTML is very simple.

We can also write more complex PHP code in HTML by using af689f0c12a0d6c13d531abc1bf17f55 tag.

More advanced code examples:

1    <html>    
2    <head>PHP HTML Integration</head>    
3    <body>    
4    <ul> <?php for($i=1;$i<=5;$i++){ ?> <li>Item No <?php echo $i; ?></li> <?php } ?> </ul>    
5    </body>    
6    </html>

Output results:

1    Item No 1    
2    Item No 2    
3    Item No 3    
4    Item No 4    
5    Item No 5

Recommended tutorials: PHP video tutorial

The above is the detailed content of Can I write php code in an html file?. 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