如何嵌入html和php

时间:2016-09-15 19:46:11

标签: php html

如何在给定代码中集成html和php。

<form action="login.php" method="post" >
<tr>
<td><span class="xxxx">User Name</span></td>
<td><span class="xxxx"><input type="text" name="username" id="username"             size="20" value="default value"></span></td>
</tr>
<tr>
    <td><span class="xxxx">Password</span></td>
    <td><span class="xxxx"><input type="password" name="password"     id="password" size="20"></span></td>
</tr>
<tr>
......
</form>

2 个答案:

答案 0 :(得分:0)

您已经更好地澄清了我们,没有任何给定的信息我们无法给出最好的回应。

但是 IF 你试图在html中嵌入一些php的内容,基础是这样的:

<html>
<head></head>
<body>
<ul> 
<?php for($i=1;$i<=5;$i++){ ?>
<li>Menu Item <?php echo $i; ?></li> 
<?php } ?>
</ul> 
</body>
</html>

答案 1 :(得分:0)

不知道你在寻找什么,看看怎么没问题。 如果您希望将HTML代码转换为PHP

echo "<form action=login.php method=post >";
echo "<tr>";
echo "<td><span class=xxxx>User Name</span></td>";
echo "<td><span class=xxxx><input type=text name=username id=username size=20 value=default value></span></td>";
echo "</tr>";
echo "<tr>";
echo "<td><span class=xxxx>Password</span></td>";
echo "<td><span class=xxxx><input type=password name=password     id=passwor" size=20></span></td>";
echo "</tr>";
echo "<tr>";

echo "</form>";

如果您希望在HTML中插入某种PHP。请注意,输入的值是PHP,而其余代码是HTML

<td><span class="xxxx"><input type="text" name="username" id="username" size="20" value="<?php echo (your value) ?>" /></td>