我很困惑如何在html标签内打印fname变量。这是我的代码,它接受输入的值,我想在p标签中打印它。
<?php
if (isset($_POST['submit'])){
$fname=$_POST['fname'];
}
?>
<html>
<body>
<form action="index.php" method="post">
First Name <input type="text" name="fname">
<input type="submit" Value="Submit" name="submit">
<p id="demo"> </p>
</form>
答案 0 :(得分:0)
使用<?php ?>
并在这些标签之间将你的PHP代码写在任何地方..
像
<html>
<body>
<form action="index.php" method="post">
First Name <input type="text" name="fname" value="<?php echo $firstname?>">
<input type="submit" Value="Submit" name="submit">
<p id="demo"> <?php echo "this is php "; ?></p>
</form>