http://pastebin.com/RE31BRSQ不工作:給空字段的值 - PHP
當我做了一個
if (empty($_POST['name'])) {
$name = 'anon';
} else {
$name = $_POST['name'];
}
的名字始終是匿名,即使有人在字段中輸入字符。
此外,
if (empty($_POST['title'])) {
} else {
$title = sha1($_POST['title']);
}
我怎樣才能使它所以插入盈的['title']
一個!
?
你看到了什麼,當你做'$ _ POST [「名」]' ? – PeeHaa
我剛纔說,我們能否看到表單本身的代碼? – Malovich
嘗試像這樣print_r($ _ POST)調試後數組; –