<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
 <channel>
  <title>Coffeeun</title>
  <link>http://robin66.blogbus.com</link>
  <description><![CDATA[]]></description>
  <generator> by blogbus.com </generator>
  <lastBuildDate>Sat, 26 May 2007 16:29:19 +0800</lastBuildDate>
  <image>
									<url>http://public.blogbus.com/images/head.gif</url>
									<title>Coffeeun</title>
									<link>http://robin66.blogbus.com</link>
								</image>  <item>
   <title>PHP cookie和session的分析</title>
   <description><![CDATA[<span><strong><u>1. </u>PHP的COOKIE</strong></span><br />
<p style="margin: 5px; line-height: 150%"><span style="font-size: 9pt; font-family: Verdana">cookie </span><span style="font-size: 9pt; font-family: 宋体">是一种在远程浏览器端储存数据并以此来跟踪和识别用户的机制。</span><span style="font-size: 9pt; font-family: Verdana"><br />PHP</span><span style="font-size: 9pt; font-family: 宋体">在</span><span style="font-size: 9pt; font-family: Verdana">http</span><span style="font-size: 9pt; font-family: 宋体">协议的头信息里发送</span><span style="font-size: 9pt; font-family: Verdana">cookie,</span><span> </span><span style="font-size: 9pt; font-family: 宋体">因此</span><span style="font-size: 9pt; font-family: Verdana"> setcookie() </span><span style="font-size: 9pt; font-family: 宋体">函数必须在其它信息被输出到浏览器前调用，这和对</span><span style="font-size: 9pt; font-family: Verdana"> header() </span><span style="font-size: 9pt; font-family: 宋体">函数的限制类似。</span><span style="font-size: 9pt; font-family: Verdana"><br /><br /><span style="font-weight: bold; color: #0080ff; text-decoration: underline">1.1 </span></span><strong style="font-weight: bold; color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: 宋体">设置</span></strong><strong style="font-weight: bold; color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: Verdana">cookie</span><span style="font-size: 9pt; font-family: Verdana">:</span></strong><span style="font-size: 9pt; font-family: Verdana"><br /><span>    </span></span><span style="font-size: 9pt; font-family: 宋体">可以用</span><span style="font-size: 9pt; font-family: Verdana"> setcookie() </span><span style="font-size: 9pt; font-family: 宋体">或</span><span style="font-size: 9pt; font-family: Verdana"> setrawcookie() </span><span style="font-size: 9pt; font-family: 宋体">函数来设置</span><span style="font-size: 9pt; font-family: Verdana"> cookie</span><span style="font-size: 9pt; font-family: 宋体">。也可以通过向客户端直接发送</span><span style="font-size: 9pt; font-family: Verdana">http</span><span style="font-size: 9pt; font-family: 宋体">头来设置</span><span style="font-size: 9pt; font-family: Verdana">.<br /><strong>1.1.1</strong><strong style="color: #0080ff; text-decoration: underline"> </strong></span><strong style="color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: 宋体">使用</span></strong><strong style="color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: Verdana">setcookie()</span></strong><strong style="color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: 宋体">函数</span></strong><strong style="color: #0080ff; text-decoration: underline"><span style="font-size: 9pt; font-family: Verdana">设置cookie:</span></strong><span style="font-size: 9pt; font-family: Verdana"><br /><span style="color: #ff0102">bool
setcookie ( string name [, string value [, int expire [, string path [,
string domain [, bool secure [, bool httponly]]]]]] )<br />     </span><span style="color: #000102">name:   cookie</span></span><span style="font-size: 9pt; color: #000102; font-family: 宋体">变量名</span><span style="font-size: 9pt; color: #000102; font-family: Verdana"><br />     value:   cookie</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">变量的值</span><span style="font-size: 9pt; color: #000102; font-family: Verdana"><br />     expire:  </span><span style="font-size: 9pt; color: #000102; font-family: 宋体">有效期结束的时间</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">,<br />     path:    </span><span style="font-size: 9pt; color: #000102; font-family: 宋体">有效目录</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">,<br />     domain: </span><span style="font-size: 9pt; color: #000102; font-family: 宋体">有效域名</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">,</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">顶级域唯一</span><span style="font-size: 9pt; color: #000102; font-family: Verdana"><br />     secure:  </span><span style="font-size: 9pt; color: #000102; font-family: 宋体">如果值为</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">1,</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">则</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">cookie</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">只能在</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">https</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">连接上有效</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">,</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">如果为默认值</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">0,</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">则</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">http</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">和</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">https</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">都可以</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">.<br /></span><span style="font-size: 9pt; color: #000102; font-family: 宋体">例子</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">:</span><br /><code><span style="color: #000000"><span style="color: #0000cc">&lt;</span><span style="color: #0000cc">?</span><span style="color: #0000ff">php</span><br /><span style="color: #0000ff">$</span><span style="color: #008080">value</span> <span style="color: #0000cc">=</span> <span style="color: #ff00ff">'something from somewhere'</span><span style="color: #0000cc">;</span><br /><br /><span style="color: #ff0000">setcookie</span><span style="color: #0000cc">(</span><span style="color: #ff00ff">&quot;TestCookie&quot;</span><span style="color: #0000cc">,</span> <span style="color: #0000ff">$</span><span style="color: #008080">value</span><span style="color: #0000cc">)</span><span style="color: #0000cc">;</span> <span style="color: #ff9900">/* 简单cookie设置 */</span><br /><span style="color: #ff0000">setcookie</span><span style="color: #0000cc">(</span><span style="color: #ff00ff">&quot;TestCookie&quot;</span><span style="color: #0000cc">,</span> <span style="color: #0000ff">$</span><span style="color: #008080">value</span><span style="color: #0000cc">,</span> <span style="color: #ff0000">time</span><span style="color: #0000cc">(</span><span style="color: #0000cc">)</span><span style="color: #0000cc">+</span>3600<span style="color: #0000cc">)</span><span style="color: #0000cc">;</span> <span style="color: #ff9900">/* 有效期1个小时 */</span><br /><span style="color: #ff0000">setcookie</span><span style="color: #0000cc">(</span><span style="color: #ff00ff">&quot;TestCookie&quot;</span><span style="color: #0000cc">,</span> <span style="color: #0000ff">$</span><span style="color: #008080">value</span><span style="color: #0000cc">,</span> <span style="color: #ff0000">time</span><span style="color: #0000cc">(</span><span style="color: #0000cc">)</span><span style="color: #0000cc">+</span>3600<span style="color: #0000cc">,</span> <span style="color: #ff00ff">&quot;/~rasmus/&quot;</span><span style="color: #0000cc">,</span> <span style="color: #ff00ff">&quot;.example.com&quot;</span><span style="color: #0000cc">,</span> 1<span style="color: #0000cc">)</span><span style="color: #0000cc">;</span> <span style="color: #ff9900">/* 有效目录 /~rasmus,有效域名example.com及其所有子域名 */</span><br /><span style="color: #0000cc">?</span><span style="color: #0000cc">&gt;</span></span></code></p>
<p style="text-align: left" class="MsoNormal" align="left"><span style="font-size: 9pt; color: #000102; font-family: 宋体">设置多个</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">cookie</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">变量</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">: setcookie('var[a]','value');</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">用数组来表示变量</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">,</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">但他的下标不用引号</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">.</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">这样就可以用</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">$_COOKIE[&lsquo;var&rsquo;][&lsquo;a&rsquo;]</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">来读取该</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">COOKIE</span><span style="font-size: 9pt; color: #000102; font-family: 宋体">变量</span><span style="font-size: 9pt; color: #000102; font-family: Verdana">....</span></p><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240914.html">使用phplib7.2中的Template处理BLOCK多重嵌套</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240789.html">模板,PHPLIB处理方式(一)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/5786897.html">I believe I can fly--听音乐：）</a> 2007-06-11</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F10252856.html&title=PHP+cookie%E5%92%8Csession%E7%9A%84%E5%88%86%E6%9E%90">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/10252856.html</link>
   <author>robin66</author>
   <pubDate>Fri, 12 Oct 2007 14:40:27 +0800</pubDate>
  </item>
  <item>
   <title>使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</title>
   <description><![CDATA[使用PHP编程的人都会碰到这样一个问题：当PHP代码和HTML代码在一起的时候，看PHP代码很费劲，整个文件也无法用Dreamweaver来编辑，这对于PHP程序员和美工来讲，修改这样的文件就象一个噩梦。<br />   
PHP中的模板(Template)技术就是为了解决这个问题而出现的。PHP模板类有很多，比较常见的是 FastTemplate 和
PHPLib，
因为出现得早，在PHP编程界名声很大。PHP程序员不知道这两个类，就象VB程序员不知道MsgBox函数一样，是一件不可思议的事情。<br />   
以前我们需要去下载PHP模板类，现在PHP4有了自己的模板类 IntegratedTemplate 和
IntegratedTemplateExtension，功能和PHPLib 差不多。这两个类是子类和父类的关系。一般我们用
IntegratedTemplateExtension 就可以了。让人感到不可思议的是 IntegratedTemplate 不是从 PEAR
类继承过来，无法用到 PEAR 类的 debug 功能。<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240914.html">使用phplib7.2中的Template处理BLOCK多重嵌套</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10252856.html">PHP cookie和session的分析</a> 2007-10-12</div><div><a href="http://robin66.blogbus.com/logs/10240789.html">模板,PHPLIB处理方式(一)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/5786897.html">I believe I can fly--听音乐：）</a> 2007-06-11</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F10240939.html&title=%E4%BD%BF%E7%94%A8PHP4%E4%B8%AD%E7%9A%84+IntegratedTemplate%E7%B1%BB%E5%AE%9E%E7%8E%B0HTML%E5%92%8CPHP%E4%BB%A3%E7%A0%81%E5%88%86%E7%A6%BB">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/10240939.html</link>
   <author>robin66</author>
   <pubDate>Thu, 11 Oct 2007 17:01:43 +0800</pubDate>
  </item>
  <item>
   <title>使用phplib7.2中的Template处理BLOCK多重嵌套</title>
   <description><![CDATA[&nbsp;&nbsp; 现在大部分模板类中都提供block功能,block用来处理不确定个数的HTML 元素，当出现多层不可定的元素，就会用到block的嵌套，对于block嵌套的用法，经过多次测试还是有需要注意的地方，下面用一个例子说明block嵌套的一种处理方法。

<p><strong>1、我们先来看一下例子要达到的效果（图一）：</strong></p>

<p align="center"><a href="http://www.phpe.net/uploads/images/article_1047544046.gif" target="_blank"><img src="http://www.phpe.net/uploads/images/article_1047544046.gif" border="0" alt="点击查看原图" hspace="3" vspace="3" width="418" align="middle" /></a></p><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10252856.html">PHP cookie和session的分析</a> 2007-10-12</div><div><a href="http://robin66.blogbus.com/logs/10240789.html">模板,PHPLIB处理方式(一)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/6792659.html">企业如何进行网络营销</a> 2007-07-17</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F10240914.html&title=%E4%BD%BF%E7%94%A8phplib7.2%E4%B8%AD%E7%9A%84Template%E5%A4%84%E7%90%86BLOCK%E5%A4%9A%E9%87%8D%E5%B5%8C%E5%A5%97">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/10240914.html</link>
   <author>robin66</author>
   <pubDate>Thu, 11 Oct 2007 16:51:39 +0800</pubDate>
  </item>
  <item>
   <title>模板,PHPLIB处理方式(二)</title>
   <description><![CDATA[<strong>嵌套的模板</strong> <br /><br />　　parse()函数的一个灵巧的特性是它创建的MyOutput句柄是一个真正的模板变量，就象some_color 是一 <br />个模板变量。所以如果你有另一个模板，它有一个{MyOutput}标签，当你分析第二个模板时，所有的 <br />{MyOutput}标记将被替换为MyOutput中的分析后的文本。这个特性允许你将一个模板文件嵌入到另一个模板 <br />中。所以，我们可能有另一个名为wholePage.ihtml的模板，内容如下： <br /><br />对不起，你没赢。但是如果你赢了，我们将对你说： <br />{MyOutput} <br /><br />　　并且在wholePage.ihtml被分析后，最后的结果将是： <br /><br />对不起，你没赢。但是如果你赢了，我们将对你说： <br />祝贺！你赢了一辆新蓝色Honda Prelude！ <br /><br />　　下面是分析两个模板的PHP代码：<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240914.html">使用phplib7.2中的Template处理BLOCK多重嵌套</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240789.html">模板,PHPLIB处理方式(一)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10252856.html">PHP cookie和session的分析</a> 2007-10-12</div><div><a href="http://robin66.blogbus.com/logs/5522015.html">蜘蛛侠3--Spider Man 3，他不是神，就在我们的身边。</a> 2007-05-26</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F10240801.html&title=%E6%A8%A1%E6%9D%BF%2CPHPLIB%E5%A4%84%E7%90%86%E6%96%B9%E5%BC%8F%28%E4%BA%8C%29">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/10240801.html</link>
   <author>robin66</author>
   <pubDate>Thu, 11 Oct 2007 16:48:36 +0800</pubDate>
  </item>
  <item>
   <title>模板,PHPLIB处理方式(一)</title>
   <description><![CDATA[　　 一般来说，模板可以让你完全地把你的PHP代码从HTML中分离出来，这样使得HTML的图形设计者们非常高兴，而且可以避免他们搞丢你的宝贵设计。 <br /><br /><strong>它不是FastTemplates</strong> <br />　　那么，我们真的需要在PHPBuilder上关于模板的另一篇文章吗？好，是的，因为有不止一种的方法用PHP来实现模板。Sascha的文章讲述了如何使用FastTEmplates，但是PHP基本类库(&quot;PHPLIB&quot;)有它自已的模板实 <br />现。 <br /><br />　　它们有什么不同呢？FastTemplates最初是从一个Perl库转变来的。FastTemplates对Perl程序工作的很好，但是对PHP不太理想。Kristian Koehntopp从头编写了PHPLIB模板，作为一个纯的PHP库，它更好地提供了PHP的优势。好处之一是Kristian的设计使用了 preg_replace()来分析模板，据说比FastTemplate 中使用的ereg_replace()要快。PHPLIB模板的另一个好处是它允许动态的块实现嵌套，不象FastTemplates。 <br /><br />　　两个库都有着非常相似的特性和能力，但是如果你已经使用了FastTemplates，并且你想学习使用PHPLIB模板，你应该把你所知道的关于 FastTemplates 的一切都忘掉。他们的特性可能是相似的，但是PHPLIB模板所做的每件事比FastTemplates只有一点点不同。<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240914.html">使用phplib7.2中的Template处理BLOCK多重嵌套</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10252856.html">PHP cookie和session的分析</a> 2007-10-12</div><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/5657427.html">学习英语记录</a> 2007-06-04</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F10240789.html&title=%E6%A8%A1%E6%9D%BF%2CPHPLIB%E5%A4%84%E7%90%86%E6%96%B9%E5%BC%8F%28%E4%B8%80%29">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/10240789.html</link>
   <author>robin66</author>
   <pubDate>Thu, 11 Oct 2007 16:46:16 +0800</pubDate>
  </item>
  <item>
   <title>10个保持注意力的技巧</title>
   <description><![CDATA[
也许养成给日程计划列清单排表格的习惯能使你的工作更有条理，然而同样是为了提高效率，我相信能
掌握一些保持专注的技巧也很重要。如果你有定力能够安静地坐在台前全神贯注投入工作长达几个小时，我敢保证，在这样的状态下，即使是半个小时的工作，也一
定比不断分心常遭干扰的一天的工作能取得更多的成果。
<br /><br />

一、杜绝干扰
<br /><br />

很明显，周遭的干扰足以让你在工作中心神不宁，那么你排除了这些干扰吗？不得不承认，运行自动收 信软件（译者注：如Gmail
Notifier、MSN Messenger，一般电子邮件客户端也具有此项功能，如：Mozilla Thunderbird、Microsoft
Outlook、Foxmail等）能保证你在第一时间阅读来信，开着即时通讯软件（译者注：IM即Instant
Messenger...<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/7876316.html">上帝的即时信息</a> 2007-08-23</div><div><a href="http://robin66.blogbus.com/logs/6921510.html">15个办法提高你的肢体语言</a> 2007-07-21</div><div><a href="http://robin66.blogbus.com/logs/6754071.html">需要掌握的26种技能</a> 2007-07-16</div><div><a href="http://robin66.blogbus.com/logs/5660450.html">ASP.NET 2.0页面事件的启动顺序</a> 2007-06-04</div><div><a href="http://robin66.blogbus.com/logs/5522035.html">门徒--可怕的毒品</a> 2007-05-26</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F8311188.html&title=10%E4%B8%AA%E4%BF%9D%E6%8C%81%E6%B3%A8%E6%84%8F%E5%8A%9B%E7%9A%84%E6%8A%80%E5%B7%A7">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/8311188.html</link>
   <author>robin66</author>
   <pubDate>Mon, 17 Sep 2007 14:09:23 +0800</pubDate>
  </item>
  <item>
   <title>控制搜索引擎访问和索引你的网站</title>
   <description><![CDATA[ 转载自谷歌中文网站管理员博客 <br />
<br />
原文：Controlling how search engines access and index your website<br />
发表于: 2007 年 1 月 26 日 上午 11:36:00<br />
<br />
我
经常被问到
Google（谷歌）和搜索引擎...<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/7876316.html">上帝的即时信息</a> 2007-08-23</div><div><a href="http://robin66.blogbus.com/logs/6921510.html">15个办法提高你的肢体语言</a> 2007-07-21</div><div><a href="http://robin66.blogbus.com/logs/6067733.html">中国谷歌（google.cn）？</a> 2007-06-22</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F8224295.html&title=%E6%8E%A7%E5%88%B6%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E%E8%AE%BF%E9%97%AE%E5%92%8C%E7%B4%A2%E5%BC%95%E4%BD%A0%E7%9A%84%E7%BD%91%E7%AB%99">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/8224295.html</link>
   <author>robin66</author>
   <pubDate>Wed, 12 Sep 2007 09:02:48 +0800</pubDate>
  </item>
  <item>
   <title>上帝的即时信息</title>
   <description><![CDATA[<br /><br />今天看到一篇非常有意思的BLOG，转载过来共赏， 文章来源：http://chn.blogbeta.com/<br /><br />
上帝：你好，你是不是呼叫我？<br /><br />
我：呼叫你？没有啊，你是谁？<br /><br />
上帝：我是上帝。我听到你的祷告，你希望我们能聊一下。<br /><br />
我：是啊，我确实在祷告&mdash;&mdash;这能让我心情舒服一点。但我现在确实很忙，我正在处理某件事情。<br /><br />
上帝：你究竟在忙些什么？蚂蚁也跟你一样忙碌。<br /><br />
我：我也不知道自己在忙什么？我就是找不到一点空闲时间。生活变得如此匆忙，每一分每一秒都显得...<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/10240801.html">模板,PHPLIB处理方式(二)</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/8311188.html">10个保持注意力的技巧</a> 2007-09-17</div><div><a href="http://robin66.blogbus.com/logs/6921510.html">15个办法提高你的肢体语言</a> 2007-07-21</div><div><a href="http://robin66.blogbus.com/logs/6754071.html">需要掌握的26种技能</a> 2007-07-16</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F7876316.html&title=%E4%B8%8A%E5%B8%9D%E7%9A%84%E5%8D%B3%E6%97%B6%E4%BF%A1%E6%81%AF">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/7876316.html</link>
   <author>robin66</author>
   <pubDate>Thu, 23 Aug 2007 13:21:54 +0800</pubDate>
  </item>
  <item>
   <title>色情网站的营销之道</title>
   <description><![CDATA[色情网站一直是互联网上的一个毒瘤。虽然国家机关一直在不断的严厉打击色情网站，但仍然难以从根本上消除色情网站。一方面是由于色情网站的后台普遍向境外发展，另一方面色情网站抓住了&ldquo;用户需求&rdquo;，在&ldquo;网络营销实践&rdquo;上有一定的套路。我们从网络营销的研究出发，不妨从中提取一些值得借鉴的方法和思路，用于正当合法项目的网络营销当中去。<br /><br />&ldquo;据了解，色情论坛一般建立初期都会以&lsquo;免费&rsquo;的口号吸引&lsquo;淫民&rsquo;，先用一些转贴的色情资源培育&lsquo;淫民&rsquo;的兴趣，等&lsquo;淫民&rsquo;上瘾后会逐步增加浏览色情资讯的权限，同时配合关闭免费会员注册、定期清理不活跃会员ID等做法，让已经注册的会员觉得现有的会员ID变得非常&lsquo;珍贵&rsquo;，迫使会员增加发帖量...<div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/6792659.html">企业如何进行网络营销</a> 2007-07-17</div><div><a href="http://robin66.blogbus.com/logs/10252856.html">PHP cookie和session的分析</a> 2007-10-12</div><div><a href="http://robin66.blogbus.com/logs/10240939.html">使用PHP4中的 IntegratedTemplate类实现HTML和PHP代码分离</a> 2007-10-11</div><div><a href="http://robin66.blogbus.com/logs/7876316.html">上帝的即时信息</a> 2007-08-23</div><div><a href="http://robin66.blogbus.com/logs/6921510.html">15个办法提高你的肢体语言</a> 2007-07-21</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F7214868.html&title=%E8%89%B2%E6%83%85%E7%BD%91%E7%AB%99%E7%9A%84%E8%90%A5%E9%94%80%E4%B9%8B%E9%81%93">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/7214868.html</link>
   <author>robin66</author>
   <pubDate>Mon, 30 Jul 2007 15:10:45 +0800</pubDate>
  </item>
  <item>
   <title>15个办法提高你的肢体语言</title>
   <description><![CDATA[<p>&nbsp;&nbsp; 1. 不要双手环抱在胸前或者翘二郎腿。<br />
&nbsp;&nbsp; 2. 保持眼神交流，但是不要盯着别人。<br />
&nbsp;&nbsp; 3. 人与人之间保持一定距离，双脚不要紧闭，显得有自信。（距离多少要看双方的亲密程度：）<br />
&nbsp;&nbsp; 4. 放松你的肩膀。（但不是放松腰， 不要学陈佩斯啊<img src="http://www.blogbus.com/public/smiles/01-11.gif" border="0" alt="" />）<br />
&nbsp;&nbsp; 5. 当听别人发表意见的时候，轻微点头表达对 演讲 者的尊敬。<br />
&nbsp;&nbsp; 6. 不要作风懒惰，弯腰驼背。<br />
&nbsp;&nbsp; 7. 如果对别人讲的内容很感兴趣，前身可以轻轻前倾表示自己的兴趣。<br />
&nbsp;&nbsp; 8. 微笑，讲一些笑话让对话环境更轻松。</p><p>......&nbsp;</p><div class="relpost"><br/><h3>随机文章：</h3><div><a href="http://robin66.blogbus.com/logs/8311188.html">10个保持注意力的技巧</a> 2007-09-17</div><div><a href="http://robin66.blogbus.com/logs/7876316.html">上帝的即时信息</a> 2007-08-23</div><div><a href="http://robin66.blogbus.com/logs/6754071.html">需要掌握的26种技能</a> 2007-07-16</div><div><a href="http://robin66.blogbus.com/logs/6067733.html">中国谷歌（google.cn）？</a> 2007-06-22</div><div><a href="http://robin66.blogbus.com/logs/6020232.html">看“血色浪漫”到半夜</a> 2007-06-20</div></div><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://del.icio.us/post?v=4&noui&jump=close&url=http%3A%2F%2Frobin66.blogbus.com%2Flogs%2F6921510.html&title=15%E4%B8%AA%E5%8A%9E%E6%B3%95%E6%8F%90%E9%AB%98%E4%BD%A0%E7%9A%84%E8%82%A2%E4%BD%93%E8%AF%AD%E8%A8%80">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><a href="http://a.blogbus.com" target="_blank">参与我爱阿尔法女郎活动，赢取丰富奖品，将轿车开回家。</a></div><br />]]></description>
   <link>http://robin66.blogbus.com/logs/6921510.html</link>
   <author>robin66</author>
   <pubDate>Sat, 21 Jul 2007 14:15:50 +0800</pubDate>
  </item>
 </channel>
</rss>
