For an experienced PHP web developer, this is a very easy thing. 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.
Embed PHP code in regular HTML
Create a hello script named hello.php:
<html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?> </body> </html>
In the above HTML code, Hello is printed 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:
<html> <head>PHP HTML Integration</head> <body> <ul> <?php for($i=1;$i<=5;$i++){ ?> <li>Item No <?php echo $i; ?></li> <?php } ?> </ul> </body> </html>
Output result:
Item No 1 Item No 2 Item No 3 Item No 4 Item No 5
The above is the entire content of this article, I hope you all like it.