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 '<p>Hello World</p>'; ?> 7 </body> 8 </html>
In the above HTML code, print Hello in the PHP code. Writing PHP code in HTML requires the use of tags. Integrating PHP and HTML is very simple.
We can also write more complex PHP code in HTML by using 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!