我正在创建Facebook画布应用。
应用位于example.com/test/index.php
。
这是代码的一部分。
<form action="" method="post">
<fieldset>
<legend>Personal information:</legend>
Enter Text:<br>
<input type="text" name="FirstText" id="ftext" name="ftext">
<br>
<input type="submit" value="Submit">
</fieldset>
</form>
<?php
if(isset($_POST["ftext"]))
{
----------
----------
}
?>
我厌倦了行动&#34; index.php&#34;,&#34; https://example.com/test/index.php&#34;和&#34; https://example.com/test/&#34;。
但上述任何一项都不起作用。表格行动应该是什么?
答案 0 :(得分:0)
如果您没有收到404错误,那么action
属性不是问题。
我建议您打印有关变量的信息(帖子前后)
<pre><?php print_r($_POST); ?></pre>
<pre><?php print_r($_REQUEST); ?></pre>
<pre><?php print_r($_SERVER); ?></pre>
这应该有助于您理解de问题并进行调试。