だから私はfacebook
自分のウェブサイトでログインを統合しようとしています。利用を望まないfacebook
方も当サイトのログインシステムを利用できるようにするため、Cookie とセッションを設定する方法を作成しました。そこで、ユーザー用の変数も作成cookies
したいと思います。ただし、次のエラーが発生します。session
facebook
Warning: Cannot modify header information - headers already sent by (output started at /home/content/88/10590088/html/Test4/index.php:9) in /home/content/88/10590088/html/Test4/login.php on line 144
Warning: Cannot modify header information - headers already sent by (output started at /home/content/88/10590088/html/Test4/index.php:9) in /home/content/88/10590088/html/Test4/login.php on line 145
145 行目と 144 行目は、以下の最後の 2 行です。
// CREATE THEIR SESSIONS AND COOKIES
$_SESSION['userid'] = $db_id;
$_SESSION['username'] = $db_username;
setcookie("id", $db_id, strtotime( '+30 days' ), "/", "", "", TRUE);
setcookie("user", $db_username, strtotime( '+30 days' ), "/", "", "", TRUE);