この blog.php ページにログインしているユーザー名を出力したいのですが、どう書けばよいでしょうか?
blog.php
include "cookie.php";
?>
cookie ページ
if(!(isset($_COOKIE['isLogin'])&&$_COOKIE[ 'isLogin']==1)){
echo 'まだログインしていません!ログインしてください';
}else{
echo 'ログインしています';
?>
login.php
$pdo=new PDO("mysql:host=localhost;dbname= t1;","root","");
if(isset($_POST['submit'])){
$stmt=$pdo->prepare("select id,username,password from user where username= ? とパスワード=?");
$stmt->execute(array($_POST['username'],($_POST['password'])));
if($stmt->rowCount()> ;0){
list($id,$username)=$stmt->fetch(PDO::FETCH_NUM);
$time=time()+24*60*60;
setCookie("uid",$id) ,$time,"/");
setCookie("ユーザー名",$ユーザー名,$time,"/");
echo '