PHP
热带企鹅泡泡
技术海洋中的一个小点
展开
-
使用php+session实现登陆
使用php的session功能,实现了简单的登陆系统。 1. 登陆页面 login.php 启动session,设置名为admin的变量。 2. form表单提交之后的处理页面 在这里是没有链接数据库,直接固定一个用户名和密码值进行验证。 3. 其他页面验证登陆处理 存在的问原创 2015-02-03 13:49:57 · 962 阅读 · 0 评论 -
PHP +fopen 显示图片
1. get_img.php 图片处理页面 $url = $_GET["url"]; $image_path = $url; $sTmpVar = fread(fopen($image_path, 'r'), filesize($image_path)); header("Content-type: Image/jpg"); echo $sTmpVar; 2. 图原创 2015-02-10 15:03:15 · 1166 阅读 · 0 评论 -
php 程序 循环选择option时的bug
php 程序循环实现select里option的时候,selected属性有问题, 经查看: $query = "select no,name from test where testno not in ('0')"; $DB->execute($query); while($cursor = $DB->fetch(OCI_ASSOC))原创 2015-03-04 15:05:31 · 843 阅读 · 0 评论 -
php 明天的显示方法
好记性不如烂笔头, 看似简单,每次实现功能的时候都要斟酌一下的内容。 php显示明天时间的方法 date("Ymdhis",strtotime("+1 day"))原创 2016-06-12 10:13:33 · 305 阅读 · 0 评论