PHP:如何获取一个表单请求,该表单请求嵌套有其他参数想要发送的iframe?

时间:2017-03-09 15:21:07

标签: php iframe request

我有一个像流动的表格:

<form name="pdf" method="post" action="pdf.php">
Name:<input type="text" name="command" id="command" size=20 placeholder="command name">
...
...
<iframe name='rpc' width=700 height=330 frameborder=0 allow-forms>unimportant options that you may forget easilly</iframe>
<input type="submit" name="submit" value="submit">
</form>

在此iframe中,将包含流动的HTML代码:

<textarea name="other" cols=650 rows=20 id="other"></textarea> 

那么如何才能获得服务器端的param other (textarea的值)的值?

当我尝试使用 $ _ POST [&#34;其他&#34;] ;

时,它为空

0 个答案:

没有答案