摘要: 删除单张图片 <?php require_once '../../conn.php'; //连接数据库 $ID = $_GET['ID']; //获取删除按钮传入要删除图片的 ID $sql = "select * from blogalbum where ID = {$ID}"; $results 阅读全文
posted @ 2019-06-14 16:31 武卡卡 阅读(818) 评论(0) 推荐(0) 编辑
摘要: 一,设置 Cookie setcookie("user",$user,time()+3600); // user 为用户名,$user 为变量的值 二,读取 Cookie echo @$_COOKIE["user"]; echo @$_COOKIE["user"]; 阅读全文
posted @ 2019-06-14 09:21 武卡卡 阅读(3531) 评论(0) 推荐(0) 编辑