不发布变量? 它们都是php文件,但不确定我是否应该将没有PHP代码的那个重命名为.html?
HTML:
<HTML>
<head>
<title>My Website</title>
</head>
<body>
<form name="details" action="processed.php" method="post">
<input type="text" name="itemname" id="itemname">
<input type="submit" value="Generate">
</form>
</body>
PHP:
<?php
$itemname = $_POST["itemname"];
?>
</head>
<body>
TEST( <?php $itemname ?> )TEST
</body>
答案 0 :(得分:0)
您需要输出带有echo或print的变量,否则您将看不到它:
TEST( <?php echo $itemname; ?> )TEST
或
TEST( <?= $itemname ?> )TEST
答案 1 :(得分:0)
没有回音??
TEST( <?php echo $itemname ?> )TEST
您应该使用echo
或print
来打印数据