我知道这个问题与其他问题相似,我进行了数小时的研究但我无法找到解决方案,请帮我找到解决方案。
我想将文本字段值从 html 传递到 php 文本字段,但不是值,而是 php 代码显示为输出。
第 1 页:
<body>
<form action="fare1.php" method="post">
<input name="address1" id="address1" type="text" size="15" value="City" />
<input name="" type="submit" />
</form>
</body>
第2页:
<body>
<div class="content">
<h1>Instructions</h1>
<table width="200">
<tr>
<td colspan="2">
<input type="text" name="from" id="from" value="<?php echo $_POST['address1']; ?>" /></td>
</tr>
</table>
<!-- end .content --></div>
</body>
我尝试使用隐藏字段,使用 javascript 函数和许多其他东西,但我无法解决我的问题:(
谢谢!
编辑...
似乎我在使用 PHP 本身时遇到了问题,我现在正试图解决这个问题。PHP 没有在我的系统中运行。如果您知道任何提供 php 支持的免费托管站点,请告诉我,我尝试了 50webs,它是保存 php 文件而不是打开它。
谢谢!