第一次操作请先备份~第一步:httpd.conf文件 (在C:\AppServ\Apache2.2\conf)1、在apache配置文件(conf)httpd.conf里面找到#VirtualhostsIncludeconf/extra/httpd-vhosts.conf把这行的#去除,去除#说明开... Read More
posted @ 2012-10-18 20:22 tinyphp Views(5640) Comments(0) Diggs(0) Edit
1 <? 2 $arr=array(array('id'=>'1','name'=>'lily','start'=>'20110101','end'=>'20110103'), 3 array('id'=>'2','name'=>'may','start'=>'20110101','end'=>' Read More
posted @ 2012-10-15 17:39 tinyphp Views(1153) Comments(0) Diggs(0) Edit
<?php$arr=array(array('id'=>'1','name'=>'lily','start'=>'20110101','end'=>'20110103'),array('id'=>'2','name'=>'may','start'=>'20110101','end'=>'20110 Read More
posted @ 2012-10-15 17:35 tinyphp Views(579) Comments(0) Diggs(0) Edit
很多时候我们不得不为一个DIV容器设定最低高度IE7 FF下都可以用 min-height 样式来定义但是IE6不支持(虽然IE6下内容可以自动撑开固定的高度)解决方案:如果你想设最低高度为600px;height:auto!important; min-height:600px;height:600px; Read More
posted @ 2012-10-13 09:14 tinyphp Views(267) Comments(0) Diggs(0) Edit
把以下代码复制到新文件,把文件复制到相应目录浏览!不是当前目录的,修改$path的值,如:$path= "D:\music"; 1 <? 2 $path= dirname(__FILE__);//当前文件所在目录 3 function file_list($path) 4 { 5 if ($handle = opendir($path))//打开路径成功 6 { 7 while (false !== ($file = readdir($handle)))//循环读取目录中的文件名并赋值给$file 8 { 9 ... Read More
posted @ 2012-10-12 15:28 tinyphp Views(727) Comments(0) Diggs(0) Edit
百度没有?那用谷歌吧!搜索国内的东西用百度是不错的,但是有时候广告太多了,把我要找的也淹没下去了。。甚至没有谷歌还是有用的,还发现一个百度谷歌一起搜的网站:http://www.baigoogledu.com/ 看看便知龙与凤! Read More
posted @ 2012-10-11 09:53 tinyphp Views(193) Comments(0) Diggs(0) Edit
unknow column ‘XXX’ in field list (找不到xxx这个属性或字段) Read More
posted @ 2012-10-05 17:26 tinyphp Views(173) Comments(0) Diggs(0) Edit
1 function change(Obj){ //改变菜单,改变内容 pub2 $(".mallmenu li a").removeClass("onmallmenu");3 $(Obj).addClass("onmallmenu");4 5 var changeid = $(Obj).attr("changeid");6 $("#"+changeid).siblings(".m").hide().end().show();7 }1 <div class=" Read More
posted @ 2012-10-05 15:27 tinyphp Views(355) Comments(0) Diggs(0) Edit
有的浏览器并不支持js收藏网站,这时候还是需要用户手动ctrl+D收藏。 看图分析: 1、点击“加入收藏夹”,支持js收藏的直接收藏,不支持的提示用户按ctrl+D收藏。 2、点击“x关闭按钮”和“不再提醒”,利用cookie,即使刷新也不再弹出来。 预览效果: 下载地址: http://downl Read More
posted @ 2012-10-04 17:53 tinyphp Views(3580) Comments(0) Diggs(0) Edit
以有道的function get_address_from_ip($ip){$url='http://www.youdao.com/smartresult-xml/search.s?type=ip&q=';$xml=file_get_contents($url.$ip);$data=simplexml_load_string($xml);return $data->product->location;}测试IP:112.94.144.132112.22.134.132111.2.194.23220.181.108.165112.120.104.132112. Read More
posted @ 2012-09-27 10:10 tinyphp Views(264) Comments(0) Diggs(0) Edit