Possible Duplicate:
PHP: 「Notice: Undefined variable」 and 「Notice: Undefined index」未定義指數
我學習PHP和我已經使用POST方法提交表單數據,我不知道爲什麼我得到這兩個錯誤:
Notice: Undefined index: search_for in \xampp\htdocs\samir\indexes.php on line 5
Notice: Undefined index: replace_with in \xampp\htdocs\samir\indexes.php on line 6
if(isset($_POST['user_input']) && isset($_POST['search_for']) && isset($_POST['replace_with'])
&& !empty($_POST['user_input']) && !empty($_POST['search_for']) && !empty($_POST['replace_with']))
echo $user_input = $_POST['user_input'];
echo $search_for = $_POST['search_for'];
echo $replace_with = $_POST['replace_with'];
某些代碼可能? –
你能告訴我們你的代碼嗎? –
我們需要看你的代碼! – simonlchilds