我有一個數據庫,重定向後,我想要一個錶行來顯示使用該行ID的行信息。我會如何輸入?PHP重定向
我建立了一個edit.php和一個login.php,現在當我點擊編輯,然後它重定向到登錄,現在我正確登錄後,它重定向到edit.php,問題在於edit.php不顯示我要編輯的行。
假設這是所有需要的代碼,我該如何糾正這一點,
if($hash == $results[0]['hash'])
{ $_SESSION['user_id'] = $results[0]['id'];
redirect(''); } else $errors['username'] = 'Login failed.';
確定這是現在的工作代碼:
if($hash == $results[0]['hash'])
{ $_SESSION['user_id'] = $results[0]['id'];
Header("Location: http://localhost/flagship/web/edit.php?id=" . $_SESSION['user_id']); }
else $errors['username'] = 'Login failed.';
只是,它的唯一的獲取從表格的第一行開始,我如何獲取其他行顯示?
能詳細解釋一下,你想要什麼,你有什麼爲此做了甚麼? – Milap 2012-03-13 13:50:00
header(「Location:../web/edit.php?id=」。$ row ['id']); – 2012-03-13 13:50:44
沒有一個工作。 – Dale 2012-03-13 14:02:48