我嘗試用php上的一個小腳本,但它沒有給出任何結果。
example.html的:
<form action="action.php" method="post">
<p>URL <input type="text" name="url"></p>
<p><input type="submit" value="OK"></p>
</form>
action.php的:
<html>
<? echo $_POST['url'];?>
</html>
即使URL領域是滿的,它並沒有給任何結果。
添加錯誤報告short_open_tag的值爲:'的ini_set( 「display_errors設置」,1 ); \t error_reporting(E_ALL);'告訴我們,如果你有任何。另外請確保您已啓用短打開標籤或將其更改爲'<?php' – Rizier123
,我必須添加它? – mk10
正好在你的php文件的頂部,但它們需要被包含在php標籤中 – Rizier123