Home  >  Article  >  Backend Development  >  如何在HTML 中嵌入 PHP 代码_PHP

如何在HTML 中嵌入 PHP 代码_PHP

WBOY
WBOYOriginal
2016-06-01 14:35:26999browse

对于一个有经验的 PHP Web 开发者,这是一件非常容易的事情。但是对于刚开始接触 PHP 编程语言的新手这就是一个问题。所以这里介绍如何在常规的 HTML 代码中嵌入 PHP 代码。

在常规的 HTML 中嵌入 PHP 代码

创建一个 hello 脚本,命名为 hello.php:

<html>
<head>
<title>PHP Test</title>
</head>
<body>
<&#63;php echo '<p>Hello World</p>'; &#63;>
</body>
</html>

上面的 HTML 代码中,在 PHP 代码中打印 Hello。在 HTML 中编写 PHP 代码需要使用 tags。集成 PHP 和 HTML 是非常简单的事情。

我们也可以在 HTML 中编写更复杂的 PHP 代码,需要使用 tag。

更高级的代码示例:

<html>
<head>PHP HTML Integration</head>
<body>
<ul> <&#63;php for($i=1;$i<=5;$i++){ &#63;> <li>Item No <&#63;php echo $i; &#63;></li> <&#63;php } &#63;> </ul>
</body>
</html>

输出结果:

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

以上所述就是本文的全部内容了,希望大家能够喜欢。

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