<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[阿不]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[阿不不在,与我无关]]></description>
<link>http://hi.baidu.com/abub</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[过去的QQ资料]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/415af40a95873538b0351d25.html]]></link>
        <description><![CDATA[
		
		<p>国家:大陸上ぇ微生物</p>
<p>州省:ど豫き西南</p>
<p>城市:}南♂唐</p>
<p>职业:ど尋飛翔の翅膀</p>
<p>毕业院校://きの心靈!魔法} </p>
<p>电子邮件:睜開眼,① 头 豬 .āǎàá&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p>联系地址:ど飛奔艷陽 }Dart The Sun</p>
<p>邮政编码:{(鬧情緒√</p>
<p>电话号码:不可改變妳那\!壞習慣</p>
<p>个人说明:Design  \\ 非 技 術 問 題 . . .</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/415af40a95873538b0351d25.html#comment">查看评论</a>]]></description>
        <pubDate>2008-09-04  22:41</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/415af40a95873538b0351d25.html</guid>
</item>

<item>
        <title><![CDATA[右键添加用记事本打开选项]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/05ef409b5a3b3eb3c9eaf486.html]]></link>
        <description><![CDATA[
		
		<p><font face="Verdana">经常碰到某些文件要打开用记事本打开,在这里记一下,方便以后重新装系统用.</font></p>
<p><font face="Verdana">保存一下内容为*.reg运行即可!</font></p>
<p><font face="Verdana">Windows Registry Editor Version 5.00<br>
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell]<br>
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Wutengfei.com]<br>
@=&quot;使用记事本打开&quot;<br>
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Wutengfei.com\command]<br>
@=&quot;notepad.exe \&quot;%1\</font></p> <a href="http://hi.baidu.com/abub/blog/item/05ef409b5a3b3eb3c9eaf486.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/05ef409b5a3b3eb3c9eaf486.html#comment">查看评论</a>]]></description>
        <pubDate>2008-08-21  17:43</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/05ef409b5a3b3eb3c9eaf486.html</guid>
</item>

<item>
        <title><![CDATA[mysql插入时判断重复数据]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/82180d313f759d1feac4af66.html]]></link>
        <description><![CDATA[
		
		INSERT INTO `test` ( `name`,`title` ) <br>
SELECT 'hih2iyou' as name,'yufeng' as title<br>
FROM DUAL<br>
WHERE NOT <br>
EXISTS (<br>
SELECT 1<br>
FROM `test` <br>
WHERE `name` = name OR `title`=title<br>
LIMIT 1<br>
) 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/82180d313f759d1feac4af66.html#comment">查看评论</a>]]></description>
        <pubDate>2008-08-01  15:12</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/82180d313f759d1feac4af66.html</guid>
</item>

<item>
        <title><![CDATA[MySQL与分页]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/7e988ff200e98815b17ec5be.html]]></link>
        <description><![CDATA[
		
		<p>作者：老王<br>
<br>
如果和MSSQL的TOP语法相比，那么MySQL的LIMIT语法要显得优雅了许多。使用它来分页是再自然不过的事情了。<br>
<br>
<strong>最基本的分页方式：</strong><br>
<strong><br>
</strong>SELECT ... FROM ... WHERE ... ORDER BY ... LIMIT ...<br>
<br>
在中小数据量的情况下，这样的SQL足够用了，唯一需要注意的问题就是确保使用了索引：<br>
<br>
举例来说，如果实际SQL类似下面语句，那么在category_id, id两列上建立复合索引比较好：<br>
<br>
SELECT * FROM articles WHERE category_id = 123 ORDER BY id</p> <a href="http://hi.baidu.com/abub/blog/item/7e988ff200e98815b17ec5be.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/7e988ff200e98815b17ec5be.html#comment">查看评论</a>]]></description>
        <pubDate>2008-07-25  21:59</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/7e988ff200e98815b17ec5be.html</guid>
</item>

<item>
        <title><![CDATA[网址收集]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/a06abf134abb0f25dc5401b4.html]]></link>
        <description><![CDATA[
		
		<p> </p>
<p>WEB</p>
<p><a href="http://www.yeeoh.net/">http://www.yeeoh.net</a></p>
<p><a href="http://www.webdesignfile.com/">http://www.webdesignfile.com/</a></p>
<p><a href="http://www.feedmyapp.com/">http://www.feedmyapp.com</a></p>
<u><font color="#800080"><a href="http://www.my3w.org/">http://www.my3w.org</a></font></u>
<p> </p>
<p> </p>
<p>ICO</p>
<p><a href="http://iconfactory.com/freeware/icon?page=1">http://iconfactory.com/freeware/icon?page=1</a></p>
<p></p> <a href="http://hi.baidu.com/abub/blog/item/a06abf134abb0f25dc5401b4.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/a06abf134abb0f25dc5401b4.html#comment">查看评论</a>]]></description>
        <pubDate>2008-07-18  10:05</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/a06abf134abb0f25dc5401b4.html</guid>
</item>

<item>
        <title><![CDATA[php中ob(Output Buffer 输出缓冲)函数使用方法]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/c6236e4cdd9df3fcd62afc17.html]]></link>
        <description><![CDATA[
		
		<p>在PHP编程中,&nbsp;&nbsp;  我们经常会遇到一些直接产生输出的函数,&nbsp;&nbsp;  如passthru(),readfile(),&nbsp;&nbsp;  var_dump()&nbsp;&nbsp;  等.&nbsp;&nbsp;  但有时我们想把这些函数的输出导入到文件中,或者先经过处理再输出,&nbsp;&nbsp;  或者把这些函数的输出作为字符串来处理.&nbsp;&nbsp;&nbsp;  <br>
这时我们就要用到&nbsp;&nbsp;  Output&nbsp;&nbsp;  Buffer(输出缓冲)&nbsp;&nbsp;  函数了.&nbsp;&nbsp;&nbsp;  <br>
处理输出缓冲的函数主要有这么几个:&nbsp;&nbsp;&nbsp;  <br>
ob_start()&nbsp;&nbsp;  开</p> <a href="http://hi.baidu.com/abub/blog/item/c6236e4cdd9df3fcd62afc17.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/c6236e4cdd9df3fcd62afc17.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-25  15:34</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/c6236e4cdd9df3fcd62afc17.html</guid>
</item>

<item>
        <title><![CDATA[佳能镜头逐个挑]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/08c4e1cacc26a283c81768aa.html]]></link>
        <description><![CDATA[
		
		买单反相机不是买机身，而是买镜头，至少是买机身和镜头的组合。这里先介绍几套APS幅面的DSLR常见的镜头配置<br>
<strong>P</strong>：优点 <strong>C</strong>：缺点<br>
<br>
<strong>一、单镜头的选择</strong> <br>
<br>
1.成本最低，性价比最高<br>
EF-S 18-55/3.5-5.6<br>
 <a href="http://hi.baidu.com/abub/blog/item/08c4e1cacc26a283c81768aa.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/08c4e1cacc26a283c81768aa.html#comment">查看评论</a>]]></description>
        <pubDate>2008-04-10  14:12</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/08c4e1cacc26a283c81768aa.html</guid>
</item>

<item>
        <title><![CDATA[O2 Xda Zinc]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/1e21f68bc0a91cd7fc1f10f3.html]]></link>
        <description><![CDATA[
		
		<p><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/abub/pic/item/e63402096d2814bf2fddd46e.jpg"></p>
<p> </p>
<div forimg="1">
<p><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/abub/pic/item/9a9e37a9323977ec1f17a268.jpg"></p>
<p> </p>
<div forimg="1">
<p></p></div></div> <a href="http://hi.baidu.com/abub/blog/item/1e21f68bc0a91cd7fc1f10f3.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/1e21f68bc0a91cd7fc1f10f3.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-06  21:16</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/1e21f68bc0a91cd7fc1f10f3.html</guid>
</item>

<item>
        <title><![CDATA[fieldset和legend标记]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/52e513096c4ef2cb3ac76337.html]]></link>
        <description><![CDATA[
		
		<h1><font size="4">HTML &lt;fieldset&gt; 标签</font></h1>
<div>
<h2><font size="3">定义和用法</font></h2>
<p>fieldset 元素可将表单内的相关元素分组。</p>
<p>&lt;fieldset&gt; 标签将表单内容的一部分打包，生成一组相关表单的字段。&lt;fieldset&gt; 标签没有必需的或唯一的属性。</p>
<p>当一组表单元素放到 &lt;fieldset&gt; 标签内时，浏览器会以特殊方式来显示它们，它们可能有特殊的边界、3D 效果，或者甚至可创建一个子表单来处理这些元素。</p>
<p> </p>
<h1><font size="4">HTML &lt;legend&gt; 标</font></h1></div> <a href="http://hi.baidu.com/abub/blog/item/52e513096c4ef2cb3ac76337.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/52e513096c4ef2cb3ac76337.html#comment">查看评论</a>]]></description>
        <pubDate>2008-02-14  09:30</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/52e513096c4ef2cb3ac76337.html</guid>
</item>

<item>
        <title><![CDATA[用js隐藏网页源码.]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/add16dd86c72f73132fa1c48.html]]></link>
        <description><![CDATA[
		
		&lt;html&gt;<br>
&lt;head&gt;<br>
&lt;title&gt;查看源文件为空-&lt;/title&gt;<br>
&lt;script&gt;<br>
function clear(){<br>
&nbsp;&nbsp;&nbsp;  Source=document.body.firstChild.data;<br>
&nbsp;&nbsp;&nbsp;  document.open();<br>
&nbsp;&nbsp;&nbsp;  document.close();<br>
&nbsp;&nbsp;&nbsp;  document.body.innerHTML=Source;<br>
}<br>
&lt;/script&gt;<br>
&lt;/head&gt;<br>
&lt;body onload=clear()&gt;<br>
&nbsp;&nbsp;&nbsp;  .....<br>
&lt;/body&gt;<br>
&lt;/html&gt; 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/add16dd86c72f73132fa1c48.html#comment">查看评论</a>]]></description>
        <pubDate>2008-01-18  10:15</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/add16dd86c72f73132fa1c48.html</guid>
</item>

<item>
        <title><![CDATA[实现iframe(嵌入式帧)框架的自适应高度]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/4d82512da1636e30359bf74d.html]]></link>
        <description><![CDATA[
		
		<p>&lt;script type=&quot;text/javascript&quot;&gt;<br>
//** iframe自动适应页面 **//&nbsp;&nbsp;  <br>
//输入你希望根据页面高度自动调整高度的iframe的名称的列表<br>
//用逗号把每个iframe的ID分隔. 例如: [&quot;myframe1&quot;, &quot;myframe2&quot;]，可以只有一个窗体，则不用逗号。</p>
<p>//定义iframe的ID<br>
var iframeids=[&quot;test&quot;]; </p>
<p>//如果用户的浏览器不支持iframe是否将iframe隐藏 yes 表示隐藏，no表示不隐藏<br>
var iframehide=&quot;yes&quot;;</p>
<p>function dyniframesize()<br>
{</p> <a href="http://hi.baidu.com/abub/blog/item/4d82512da1636e30359bf74d.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/4d82512da1636e30359bf74d.html#comment">查看评论</a>]]></description>
        <pubDate>2008-01-18  10:08</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/4d82512da1636e30359bf74d.html</guid>
</item>

<item>
        <title><![CDATA[jquery的cookie插件]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/94e3ef50e7ec93668435246a.html]]></link>
        <description><![CDATA[
		
		<font color="#333300">&nbsp;&nbsp;&nbsp;  jQuery.cookie = function(name, value, options) { <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if (typeof value != 'undefined') { // name and value given, set cookie <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  options = options || {}; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if (value === null) { <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font> <a href="http://hi.baidu.com/abub/blog/item/94e3ef50e7ec93668435246a.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/94e3ef50e7ec93668435246a.html#comment">查看评论</a>]]></description>
        <pubDate>2008-01-18  09:03</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/94e3ef50e7ec93668435246a.html</guid>
</item>

<item>
        <title><![CDATA[你丫才CCTV,你全家都CCTV.]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/9da5be80c1d821d39023d9a4.html]]></link>
        <description><![CDATA[
		
		会议没有不隆重的，闭幕没有不胜利的；<br>
讲话没有不重要的，鼓掌没有不热烈的；<br>
领导没有不重视的，看望没有不亲切的；<br>
接见没有不亲自的，进展没有不顺利的；<br>
完成没有不圆满的，成就没有不巨大的；<br>
工作没有不扎实的，效率没有不显著的；<br>
决议没有不通过的，人心没有不振奋的；<br>
班子没有不团结的，群众没有不满意的；<br>
领导没有不微笑的，问题没有不解决的；<br>
事情没有不瞩目的，会谈没有不坦诚的；<br>
反对没有不强烈的，交涉没有不严正的；<br>
完成没有不超额的，竣工没有不提前的；<br>
中日没 <a href="http://hi.baidu.com/abub/blog/item/9da5be80c1d821d39023d9a4.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%C6%E4%CB%FB">其他</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/9da5be80c1d821d39023d9a4.html#comment">查看评论</a>]]></description>
        <pubDate>2008-01-07  13:29</pubDate>
        <category><![CDATA[其他]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/9da5be80c1d821d39023d9a4.html</guid>
</item>

<item>
        <title><![CDATA[CSS兼容方案]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/f8e2c20098221983e850cdd5.html]]></link>
        <description><![CDATA[
		
		<p><font color="#666699">e {/*FF OP*/<br>
background-color: #FF0000<br>
}<br>
html* .e{/*Sa IE7 OP*/<br>
background-color:#FF00FF<br>
} <br>
*+html .e{<br>
background-color:#000000;/*OP*/<br>
*background-color:#0000FF;/*IE7*/<br>
} <br>
* html .e{/*IE6*/<br>
background-color:#00FFFF<br>
} <br>
</font></p>
<p><strong>需要注意的是：IE7对样式的解释跟DTD是有关，在没有DTD的时候，IE7是能读取IE6的hack的。</strong></p>
<p> </p>
<p><strong>屏蔽IE浏览器（也就是IE下不显示）</strong></p>
<p>*:lang(zh)</p> <a href="http://hi.baidu.com/abub/blog/item/f8e2c20098221983e850cdd5.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%BC%BC%CA%F5">技术</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/f8e2c20098221983e850cdd5.html#comment">查看评论</a>]]></description>
        <pubDate>2008-01-03  09:48</pubDate>
        <category><![CDATA[技术]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/f8e2c20098221983e850cdd5.html</guid>
</item>

<item>
        <title><![CDATA[做了一些按钮配色]]></title>
        <link><![CDATA[http://hi.baidu.com/abub/blog/item/8a34ba1b7831effeae513363.html]]></link>
        <description><![CDATA[
		
		<p> </p>
<div forimg="1"><img class="blogimg" border="0" small="0" src="http://hiphotos.baidu.com/abub/pic/item/977ab9116f2b551eb8127bed.jpg"></div> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/abub/blog/category/%D7%F7%C6%B7">作品</a>&nbsp;<a href="http://hi.baidu.com/abub/blog/item/8a34ba1b7831effeae513363.html#comment">查看评论</a>]]></description>
        <pubDate>2007-12-27  11:10</pubDate>
        <category><![CDATA[作品]]></category>
        <author><![CDATA[abub]]></author>
		<guid>http://hi.baidu.com/abub/blog/item/8a34ba1b7831effeae513363.html</guid>
</item>


</channel>
</rss>