上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
摘要: 01.session_start(); 02. 03.isset( 04.SESSION['username'])?include("checklogin.php"):session_destroy(); 05. 06.?> 07. 08.欢迎页面,说明已经登录进来 09. 10.<?php 11. 12.if (isset(GET['out'])){ 13.GET['out']=='index'?session_destroy():''; 14. 15.} 16. 17.?> 阅读全文
posted @ 2013-05-21 10:41 王翔(kingfly) 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 下载的文件和PHP代码页面放到同一目录下<a href="word.php?file=help&type=doc">宽带故障排查手册下载</a> 下面是word.php页面01.if (!isset(GET["file"]) || !isset(GET["type"])) { 02.print "no file selsect"; exit(); 03.} 04.$file = GET["file"].".".GET["type&qu 阅读全文
posted @ 2013-05-21 10:40 王翔(kingfly) 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 01.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 02.<html xmlns="http://www.w3.org/1999/xhtml"> 03.<head> 04.<meta http-equiv="Content-Type" content="text/htm 阅读全文
posted @ 2013-05-21 10:38 王翔(kingfly) 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 01.借鉴:网页JS弹出广告代码,头部,右下角,网页中漂浮,对联广告代码等大全 02.网页头部弹出广告: 03.<!--首页头部广告--> 04.<script src="http://www.ce.cn/inc1/top_ad.js" type="text/javascript" language="javascript"></script> 05.<script type="text/javascript"> 06.if(!ads){ 07.var ads=new 阅读全文
posted @ 2013-05-21 10:37 王翔(kingfly) 阅读(4394) 评论(0) 推荐(0) 编辑
摘要: <? php header("Content-type:application/vnd.ms-excel");//这两行最重要 header("Content-Disposition:attachment;filename=test_data.xls");//这两行最重要,一定要写上 $tx='参会注册表'; echo $tx."\n\n"; echo "个人信息\t"; echo " \t"; echo " \t"; echo " \t&qu 阅读全文
posted @ 2013-05-21 10:11 王翔(kingfly) 阅读(279) 评论(0) 推荐(0) 编辑
摘要: //首先写个方法function sendSMS($http,$username,$password,$sendmobile,$send_content){ $httpurl = $http; $data = array ( 'USERNAME'=>$username, //用户账号 'PASSWORD'=>$password, //用户密码 'MOBILE'=>$sendmobile, //号码 'CONTENT'=> mb_convert_encoding($send_content,'GB23 阅读全文
posted @ 2013-05-21 10:10 王翔(kingfly) 阅读(1739) 评论(0) 推荐(0) 编辑
摘要: 01.<span style="font-size: 18px;">我做了一早上我把怎么样把网站的logo放到地址栏的前面并显示,下面我说说我的步骤 02. 一、首先把做好的logo图片转换成.ICO的格式,这里要使用ico图标制作工具,最好是61*16像素的,很简单的。 03. 二、把做好的.ICO的图标放到你网站的根目录下面,并命名为favicon.ico 04. 三、在网站的首页加入以下代码 05.</span><span style="font-size: 18px;"><span style=" 阅读全文
posted @ 2013-05-21 10:08 王翔(kingfly) 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: date_default_timezone_set('Asia/Shanghai'); 阅读全文
posted @ 2013-05-21 10:04 王翔(kingfly) 阅读(226) 评论(0) 推荐(0) 编辑
摘要: /** * 生成HTML静态页 */ public function createHtml($pagePath) { ob_end_clean(); //清空缓冲区 ob_start(); //开启缓冲区 $this->smarty->display($pagePath); $data = ob_get_contents(); ob_end_clean(); ... 阅读全文
posted @ 2013-05-20 16:25 王翔(kingfly) 阅读(803) 评论(0) 推荐(0) 编辑
摘要: <?php/** * 数据库操作类 */class DB { private $link_id; private $handle; //日志文件句柄 private $is_log; private $time; public function __construct() { header("Content-type: text/html; charset=utf-8"); $this->time = $this->microtime_float(); require_once 'configs/c... 阅读全文
posted @ 2013-05-13 13:56 王翔(kingfly) 阅读(2138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页