Changsheng Fitness Trading Co.,LTD.is a leading producer and exporter of high quality fitnessequipment and fitness accessories such as fitness dvds. Established in 2004, We have the large experience designers for your develop the new productions. that are manufactured and exported, considering the needs, durability, reasonable cost, ease of installation and flexibility. We present genuine modular ranges that involves the exclusive use of treatment with any poisonous, and harmful substances, at the same time our products does not harm the environment neither while under manufacturing or upon its use. With in a short span of time we have exported our both indoor and outdoor playground, abroad such as Thailand, Cyprus, Iran, India, Singapore, Brunei, and Saudi Arabia, New Zealand etc more than 60 countries., We also have exported to countries like Australia and United States. Our Clientele also include Municipalities, Schools, Recreation centers, Housing Societies, Villas, Beach resorts, Public Gardens and as well as Building Contractors.
We also assist our clients if required, designing, installation assistance, and provide help as per request to prepare playground areas, and we also manufacture and supply custom designed models according to clients' tastes.
http://www.fitnessequipmentworkouts.com/
Fitness equipment
We also assist our clients if required, designing, installation assistance, and provide help as per request to prepare playground areas, and we also manufacture and supply custom designed models according to clients' tastes.
http://www.fitnessequipmentworkouts.com/
Fitness equipment
有人说html5可以取代 flash
很多人顶,也有很多人支持,但实际呢?
flash是美工做的 html是程序员做的,
很多人顶,也有很多人支持,但实际呢?
flash是美工做的 html是程序员做的,
Quotation
关键是实现难度的问题,如果得写一大堆js来支持还是干不过flash,开发flash的不是程序员而是美工,HTML5老是用程序员的思维来解决美工问题。HTML5有flash那么强大的制作工具吗
我们知道utf-8在mysql里面是utf8
那么latian1是什么编码呢?
经过测试,是cp1252
这个可以转过来 echo iconv("UTF-8","cp1252",$lst['title']) ;
那么latian1是什么编码呢?
经过测试,是cp1252
这个可以转过来 echo iconv("UTF-8","cp1252",$lst['title']) ;
昨天发现了,简单的 mysql的latian1转utf8
用set names latian1 把编码正常显示
然后在 select * from table 把资料显示,
在把资料导成html的table !
然后导入 html
但是效果不好,碰到有html的内容,会分qi错了!
所以就写了个工具,来在内部转换,
把latian的格式读出来,用utf8的格式来保存
用set names latian1 把编码正常显示
然后在 select * from table 把资料显示,
在把资料导成html的table !
然后导入 html
但是效果不好,碰到有html的内容,会分qi错了!
所以就写了个工具,来在内部转换,
把latian的格式读出来,用utf8的格式来保存
今天去查了一下域 名,发现在黑名单
后来想一下就明白,用黑名单查一下,就有两个,
呵呵,就是主办的单位写上黑名单,然后在加一下就好
所以你查到的域 名在黑名单中,其实就不是在黑名单中!那只是一个人为的设置!
后来想一下就明白,用黑名单查一下,就有两个,
呵呵,就是主办的单位写上黑名单,然后在加一下就好
所以你查到的域 名在黑名单中,其实就不是在黑名单中!那只是一个人为的设置!
昨天下载了phpcms的pc_webserver 想建一个虚拟站点,结果出现了 403 Forbidden 这个错误
打开网页显示
昨天晚上回去重安装了系统
想起来要安装这个,
于是试了一下,
终于在对比后发现了问题
pc_webserver的问题
Options FollowSymLinks
AllowOverride all
Order deny,allow
deny from all
Satisfy all
换成
Options FollowSymLinks
AllowOverride all
Order deny,allow
allow from all
Satisfy all
打开网页显示
Quotation
Forbidden
You don't have permission to access /index.htm on this server.
You don't have permission to access /index.htm on this server.
昨天晚上回去重安装了系统
想起来要安装这个,
于是试了一下,
终于在对比后发现了问题
pc_webserver的问题
Options FollowSymLinks
AllowOverride all
Order deny,allow
deny from all
Satisfy all
换成
Options FollowSymLinks
AllowOverride all
Order deny,allow
allow from all
Satisfy all
昨天晚上去志凡的网站,看到一他写的一个函数
原文地址:
http://coderhome.net/code/index.php?id=159
redstone 原来的代码,用正则替换,img和title中有关键字不会被替换 (之前bo-blog的一些插件也碰到这样的问题!)效果是全文的,,
不过我在处理一个站的时候 全文被替换了,然后就被K了,呵呵
昨天经过测试后,我结合两个,改成
文章中的"网站",就是演示的效果!
http://www.sofut.com/articles/40.htm
这样的网站,在用关键字,索引关键字,优化的效果就出来了!
原文地址:
http://coderhome.net/code/index.php?id=159
function str_replace_once($needle, $replace, $haystack) {
return preg_replace('/' . preg_quote($needle,'/') . '/', $replace,$haystack,1);
}
return preg_replace('/' . preg_quote($needle,'/') . '/', $replace,$haystack,1);
}
redstone 原来的代码,用正则替换,img和title中有关键字不会被替换 (之前bo-blog的一些插件也碰到这样的问题!)效果是全文的,,
不过我在处理一个站的时候 全文被替换了,然后就被K了,呵呵
function changekeyword($str, $keyword, $url) {
$a = "<a href=\"$url\">$keyword</a>";
$str = preg_replace("/(([^>][^\"])($keyword)([^<]))/is", "\\2$a\\4", $str);
$str = preg_replace('/(title|alt)=("?[^<]+)'.str_replace('/', '\\/', $a).'([^>]+?"?)/i', "\\1=\\2$keyword\\3", $str);
return $str;
}
$a = "<a href=\"$url\">$keyword</a>";
$str = preg_replace("/(([^>][^\"])($keyword)([^<]))/is", "\\2$a\\4", $str);
$str = preg_replace('/(title|alt)=("?[^<]+)'.str_replace('/', '\\/', $a).'([^>]+?"?)/i', "\\1=\\2$keyword\\3", $str);
return $str;
}
昨天经过测试后,我结合两个,改成
function str_replace_once($str, $keyword, $url,$limit=1) {
$a = "<a href=\"$url\">$keyword</a>";
$str = preg_replace("/(([^>][^\"])($keyword)([^<]))/is", "\\2$a\\4", $str,$limit);
$str = preg_replace('/(title|alt)=("?[^<]+)'.str_replace('/', '\\/', $a).'([^>]+?"?)/i', "\\1=\\2$keyword\\3", $str);
return $str;
}
$a = "<a href=\"$url\">$keyword</a>";
$str = preg_replace("/(([^>][^\"])($keyword)([^<]))/is", "\\2$a\\4", $str,$limit);
$str = preg_replace('/(title|alt)=("?[^<]+)'.str_replace('/', '\\/', $a).'([^>]+?"?)/i', "\\1=\\2$keyword\\3", $str);
return $str;
}
文章中的"网站",就是演示的效果!
http://www.sofut.com/articles/40.htm
这样的网站,在用关键字,索引关键字,优化的效果就出来了!










