摘要:
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.?> 阅读全文
摘要:
下载的文件和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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
<? 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 阅读全文
摘要:
//首先写个方法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 阅读全文
摘要:
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=" 阅读全文
摘要:
date_default_timezone_set('Asia/Shanghai'); 阅读全文