在我的網站我有一個表格看起來像這樣上的index.html:HTML表單文本文件
<form id="demo" action='submit.php' method='post' enctype='text/plain'>
link: <input type='text' name='web'></br>
<input type='submit' value='submit'>
</form>
然後在submit.php我得到:
<?php
$fp=fopen('sub.txt','a');
fwrite($fp,addslashes($web));
fclose($fp);
header('location: thanks.html');
exit();
?>
但是,當我按提交結果sub.php是beeing
/n
但應
example.com/n
php代碼有什麼問題。
我想在文件sub.txt印刷形式submited的鏈接,然後那個人被重定向到一個感謝您網頁。
不應該'$ web'是'$ _ POST [ '網絡']'? – j08691
你的意思是fwrite($ fp,addslashes($ _ POST ['web'])); ? @ j08691 – Svante
你在哪裏設置了'$ web'?你的'註冊globals'是? – ncm