我有两个文件,一个是index.php
,其中包含一个提交给abc.php的表单。现在问题是在index.php
中有一个框架我想在哪里显示我得到的数据在将表格提交给abc.php
之后。我尝试了但我无法做到。希望我已经提到了所有需要的内容。任何建议将不胜感激。
答案 0 :(得分:0)
设置表单的目标(phpfiddle demo):
<?php
if(!empty($_POST['submit_to_frame']))
{
echo htmlspecialchars($_POST['the_data']);
}
else
{
?>
<iframe id="the_frame" name="the_frame"></iframe>
<form method="POST" target="the_frame">
<input type="hidden" name="submit_to_frame" value="true" />
<input type="text" name="the_data"/>
<input type="submit" value="OK">
</form>
<?php
}
?>