<?php xml version="1.0" encoding="UTF-8"?> 
<rss version="2.0">
<channel>
<title><![CDATA[Any.BLOG]]></title>
<link>http://www.anycc.com/blog/</link>
<description><![CDATA[被风吹拂过的夏天]]></description>
<language>utf-8</language>
<copyright><![CDATA[CopyRight 2006 F2Blog.com All Rights Reserved.]]></copyright>
<webMaster><![CDATA[aniko@anycc.com]]></webMaster>
<generator>F2blog 1.2 build 03.01</generator> 
<image>
	<title>Any.BLOG</title> 
	<url>http://www.anycc.com/blog/attachments/7230348823.jpg</url> 
	<link>http://www.anycc.com/blog/</link> 
	<description>Any.BLOG</description> 
</image>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-253.html</link>
	<title><![CDATA[PHP实现多选框批量处理]]></title>
	<author>Aion</author>
	<category><![CDATA[Tech]]></category>
	<pubDate>2008-11-12 10:04</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-253.html</guid>	
	<description><![CDATA[后台里面常用的批量处理，比如批量删除多个消息，用数组实现，每个多选框的值赋上此条目的ID，代码如下：<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/code.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> CODE:</div><div class="UBBContent"><div class=quote id='code1518'><code><span style="color: #000000">&lt;input&nbsp;name=\"multi[]\"&nbsp;type=\"checkbox\"&nbsp;id=\"multi[]\"&nbsp;value=\"<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">$row_XXX</span><span style="color: #007700">[</span><span style="color: #DD0000">'id'</span><span style="color: #007700">];&nbsp;</span><span style="color: #0000BB">?&gt;</span></span></code></div><div style="font-size:11px;margin-left:5px"><a href="javascript:" onclick="CopyText(document.getElementById('code1518'));">[Copy to clipboard]</a></div></div></div>JS代码实现多选框的全选、反选、不选功能：<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/code.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> CODE:</div><div class="UBBContent"><div class=quote id='code0591'><code><span style="color: #000000">function&nbsp;checkAll(){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;objs&nbsp;=&nbsp;document.getElementsByName('multi[]');&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(i=0;i&lt;objs.length;i++){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objs[i].checked=true;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}}function&nbsp;uncheckAll(){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;objs&nbsp;=&nbsp;document.getElementsByName('multi[]');&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(i=0;i&lt;objs.length;i++){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objs[i].checked=false;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}}function&nbsp;reverseCheckAll(){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;objs&nbsp;=&nbsp;document.getElementsByName('multi[]');&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(i=0;i&lt;objs.length;i++){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objs[i].checked=&nbsp;!objs[i].checked;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}}</span></code></div><div style="font-size:11px;margin-left:5px"><a href="javascript:" onclick="CopyText(document.getElementById('code0591'));">[Copy to clipboard]</a></div></div></div>三个按钮，即全选、不选、反选<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/code.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> CODE:</div><div class="UBBContent"><div class=quote id='code0130'><code><span style="color: #000000">&lt;input&nbsp;type=\"button\"&nbsp;value=\"全选\"&nbsp;onclick=\"checkAll();\"&nbsp;/&gt;&lt;input&nbsp;type=\"button\"&nbsp;value=\"不选\"&nbsp;onclick=\"uncheckAll();\"&nbsp;/&gt;&lt;input&nbsp;type=\"button\"&nbsp;value=\"反选\"&nbsp;click=\"reverseCheckAll();\"&nbsp;/&gt;</span></code></div><div style="font-size:11px;margin-left:5px"><a href="javascript:" onclick="CopyText(document.getElementById('code0130'));">[Copy to clipboard]</a></div></div></div>批量删除按钮：<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/code.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> CODE:</div><div class="UBBContent"><div class=quote id='code4326'><code><span style="color: #000000">&lt;input&nbsp;type=\"submit\"&nbsp;name=\"submit\"&nbsp;value=\"Delete_All\"/&gt;</span></code></div><div style="font-size:11px;margin-left:5px"><a href="javascript:" onclick="CopyText(document.getElementById('code4326'));">[Copy to clipboard]</a></div></div></div>PHP代码实现循环删除：<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/code.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> CODE:</div><div class="UBBContent"><div class=quote id='code7983'><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">if&nbsp;((isset(</span><span style="color: #0000BB">$_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">"submit\"]))&nbsp;&amp;&amp;&nbsp;($_POST[\"submit\"]&nbsp;==&nbsp;\"Delete_All\"))&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;$multidel&nbsp;=&nbsp;$_POST[\"multi\"];&nbsp;&nbsp;&nbsp;&nbsp;for($i=0;$i&lt;count($multidel);$i++)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;$deleteSQL&nbsp;=&nbsp;sprintf(\"DELETE&nbsp;FROM&nbsp;XXX&nbsp;WHERE&nbsp;id=%s\",GetSQLValueString($multidel[$i],&nbsp;\"int\"));&nbsp;&nbsp;&nbsp;&nbsp;mysql_select_db($database_conn,&nbsp;$conn);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$Result&nbsp;=&nbsp;mysql_query($deleteSQL,&nbsp;$conn)&nbsp;or&nbsp;die(mysql_error());&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;$deleteGoTo&nbsp;=&nbsp;\"XXX.php\";&nbsp;&nbsp;if&nbsp;(isset($_SERVER['QUERY_STRING']))&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;$deleteGoTo&nbsp;.=&nbsp;(strpos($deleteGoTo,&nbsp;'?'))&nbsp;?&nbsp;\"&amp;\"&nbsp;:&nbsp;\"?\";&nbsp;&nbsp;&nbsp;&nbsp;$deleteGoTo&nbsp;.=&nbsp;$_SERVER['QUERY_STRING'];&nbsp;&nbsp;}&nbsp;&nbsp;header(sprintf(\"Location:&nbsp;%s\",&nbsp;$deleteGoTo));}?&gt;</span></span></code></div><div style="font-size:11px;margin-left:5px"><a href="javascript:" onclick="CopyText(document.getElementById('code7983'));">[Copy to clipboard]</a></div></div></div>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-252.html</link>
	<title><![CDATA[奥巴马当选演讲～中英文]]></title>
	<author>Aion</author>
	<category><![CDATA[Fancy]]></category>
	<pubDate>2008-11-07 09:06</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-252.html</guid>	
	<description><![CDATA[<p><img src="http://img1.cache.netease.com/cnews/2008/11/5/2008110516522727587.jpg" alt=" " width="500" height="295" /><br /><br /> 如果还有人对美国是否凡事都有可能存疑，还有人怀疑美国奠基者的梦想在我们所处的时代是否依然鲜活，还有人质疑我们的民主制度的力量，那么今晚，这些问题都有了答案。<br /><br /> 这是设在学校和教堂的投票站前排起的前所未见的长队给出的答案；是等了三四个小时的选民所给出的答案，其中许多人都是有生以来第一次投票，因为他们认定这一次肯定会不一样，认为自己的声音会是这次大选有别于以往之所在。<br /><br /> 这是所有美国人民共同给出的答案－－无论老少贫富，无论是民主党还是共和党，无论是黑人、白人、拉美裔、亚裔、原住民，是同性恋者还是异性恋者、残疾人还是健全人－－我们从来不是&ldquo;红州&rdquo;和&ldquo;蓝州&rdquo;的对立阵营，我们是美利坚合众国这个整体，永远都是。<br /><br /> 长久以来，很多人一再受到告诫，要对我们所能取得的成绩极尽讽刺、担忧和怀疑之能事，但这个答案让这些人伸出手来把握历史，再次让它朝向美好明天的希望延伸。<br /><br /> 已经过去了这么长时间，但今晚，由于我们在今天、在这场大选中、在这个具有决定性的时刻所做的，美国已经迎来了变革。<br /><br /> 我刚刚接到了麦凯恩参议员极具风度的致电。他在这场大选中经过了长时间的努力奋斗，而他为</p>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-251.html</link>
	<title><![CDATA[convert命令转FAT32至NTFS出现No files found matching的解决办法]]></title>
	<author>Aion</author>
	<category><![CDATA[Tech]]></category>
	<pubDate>2008-10-22 22:27</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-251.html</guid>	
	<description><![CDATA[<p>用My BOOK备份的时候发现默认是FAT32的，超过4GB的单个文件写入不能 &gt;_&lt; 所以那些HDTV备份不了喽。尝试使用convert转换FAT32至NTFS格式，出错：<br /> <div class="UBBPanel"><div class="UBBTitle"><img src="http://www.anycc.com/blog/images/From.gif" style="margin:0px 2px -3px 0px;" border="0" alt=""/> 引用:</div><div class="UBBContent"> C:Documents and SettingsAdministrator&gt;convert G:/fs:ntfs<br /> Delphi Form Conversion Utility Version 5.0<br /> Copyright (c) 1995,99 Inprise Corporation<br /> No files found matching d:/fs:ntfs.<br /> </div></div><br /><br /> 估计是这个Delphi命令的路径造成的，之前用过没问题。<br /> 修改PATH，把%systemroot%system32;、%systemroot%;这两个放到最前面<br /> 或者直接运行%systemroot%system32convert&nbsp;&nbsp;&nbsp;G:/fs:ntfs<br /><!--more--><br /> 噼里啪啦一阵以后，转换完成：<br /> [quote]<br /> C:UsersAniko&gt;%systemroot%system32conver</p>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-250.html</link>
	<title><![CDATA[Western Digital My Book]]></title>
	<author>Aion</author>
	<category><![CDATA[Fancy]]></category>
	<pubDate>2008-10-20 22:47</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-250.html</guid>	
	<description><![CDATA[今天西部数据的移动硬盘寄到了，仔细瞅瞅越发觉得好看，网上找了找资料发现买的只是最低端的Essential Edition，还有更强大的甚至可以刷Linux操作系统的版本。移动硬盘做到这样的程度确实很厉害，推荐有购买移动硬盘需求的购买，当然，大部分的人买Essential Edition和Home、Office Edition就OK了。Home和Office版有自动同步功能哦。放在书橱里面就和一本平装书一样大小，几块堆一起也没关系。看论坛里面还有人实现在高端版本里面刷系统并使用P2P软件&hellip;&hellip;而且仅仅是买了个二手的World Edition的盒子自己组的My Book。嗯嗯～有空我也试试。<br /><img src="http://www.anycc.com/blog/attachments/200810/0913394020.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/0913394020.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/0913394020.jpg" width="310" height="310" /><br /> 再发一张图～蓝色的灯很好看，还有变换效果，不是一般杂牌硬盘盒能做到的。散热和自动关机功能也非常优秀。<br /><!--more--><br /><img src="http://www.anycc.com/blog/attachments/200810/6808264739.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/6808264739.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/6808264739.jpg" width="400" height="400" /><br /> 内置的同步软件只有30天试用就算了，还有个WD检测软件，跑了三个多小时终于完了～呵呵～证明快递运过来没啥问题就行。<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/4320998061.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/4320998061.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/4320998061.jpg" width="634" height="475" />]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-249.html</link>
	<title><![CDATA[Vista文件夹名称消失解决办法]]></title>
	<author>Aion</author>
	<category><![CDATA[Style]]></category>
	<pubDate>2008-10-19 18:56</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-249.html</guid>	
	<description><![CDATA[前段时间遇到的，今天又不小心碰到了～把解决办法写出来免得老记不住。不知道这算不算Vista的BUG。<br /> 如果某个盘的文件夹名称消失了。首先按住shift键然后更改视图，切换为其他视图，然后按住shift再切换为中等图标视图。接着点击进入一个任意文件夹，再返回到磁盘根目录，文件夹的名字就有。<br /> 真是莫名其妙的问题～]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-248.html</link>
	<title><![CDATA[生日，快乐～]]></title>
	<author>Aion</author>
	<category><![CDATA[Diary]]></category>
	<pubDate>2008-10-11 22:49</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-248.html</guid>	
	<description><![CDATA[<p>今天生日。是的，今天确实过生日，激动的我前一晚上没关手机。结果大半夜的收到两条短信，50%是广告&hellip;&hellip;<br /> 今天生日，收到了礼物。得得瑟一下，告慰那些没有礼物的生日，再见～<br /><br /> 姑娘大老远拎过来的巧克力蛋糕，咖啡味果仁陷～口感很棒<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/8845936195.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/8845936195.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/8845936195.jpg" width="500" height="375" /><br /><br /><br /> 打开～<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/0338695664.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/0338695664.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/0338695664.jpg" width="500" height="413" /><br /><br /><br /> 超可爱的杯子。这个杯子是以前逛南京的时候看见的～嘀咕一下说很喜欢～结果不知道她什么时候偷偷跑过去买来的，谢谢俺姑娘这么有心记得了，真好。<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/0360576880.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/0360576880.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/0360576880.jpg" width="500" height="667" /><br /><br /><br /> 这猫的表情太配这环境了～呵呵～馋翻了～年年有余～今年一定要出运！一定会出运！<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/3830495826.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/3830495826.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/3830495826.jpg" width="500" height="335" /><br /><!--more--><br /><br /> 还有朋友从苏州寄过来的周庄特产万三蹄膀～呵呵～知道我喜欢吃肉 = =<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/0585462030.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/0585462030.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/0585462030.jpg" width="500" height="517" /><br /><br /><br /> 感谢嵇姑娘的&ldquo;自选礼物&rdquo;～呵呵～我贪心的要了的蓝牙耳机<br /><br /><img src="http://www.anycc.com/blog/attachments/200810/3345610726.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/3345610726.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/3345610726.jpg" width="500" height="500" /><br /><br /><br /> 最后再感谢联盟伟大的Vimomo阿姨大老远从北方给我送来一盒 Durex &hellip;&hellip;<br /><br /> 恩～还要感谢晚上送来问候的的波姐～号码一直没变～祝你也快乐～<br /><br /> 谢谢所有人～因为你们～所以生日快乐了～</p>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-247.html</link>
	<title><![CDATA[老照片～]]></title>
	<author>Aion</author>
	<category><![CDATA[Diary]]></category>
	<pubDate>2008-10-06 15:23</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-247.html</guid>	
	<description><![CDATA[有史以来最黑暗的十一中的安慰，就是每天晚上回家扫描那些发黄老照片。从最开始被我妈称为企鹅式学步的照片，到最近一次以标准的身资在中山陵和老妈的合影。时光飞逝，即便那些场景历历在目恍若昨天，也都已经逝去十几二十年了。恍惚间，父母都老了，而我却已经站到一个尴尬的年龄路口。事业还在瞻前顾后止步不前，生活除了宅就是晃外加待嫁庐中。好久不写日志只是有时看看诸君的博客上的畅想，有时觉得有些羡慕，有时又觉得仅此尔尔&hellip;&hellip;MD～我不是在感慨人生。<br /><br /> 发两张老照片～重温一下以前的记忆：<br /><img src="http://www.anycc.com/blog/attachments/200810/2557449069.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/2557449069.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/2557449069.jpg" width="312" height="427" />&nbsp;&nbsp;&nbsp; <img src="http://www.anycc.com/blog/attachments/200810/1297305517.jpg" style="cursor:pointer;" onclick="open_img(&#39;http://www.anycc.com/blog/attachments/200810/1297305517.jpg&#39;)" alt="http://www.anycc.com/blog/attachments/200810/1297305517.jpg" width="312" height="427" />]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-246.html</link>
	<title><![CDATA[IKEA]]></title>
	<author>Aion</author>
	<category><![CDATA[View]]></category>
	<pubDate>2008-09-07 15:45</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-246.html</guid>	
	<description><![CDATA[<p>周末去了一次宜家，看中一张桌子～挺喜欢那坐在中间环顾的感觉，挺有工作的气息 ^^ 打算买回来～<br /><br /><img src="http://www.anycc.com/blog/http://www.anycc.com/blog/attachments/200809/5013642441.jpg" alt="ikea" width="750" height="427" /><br /><br /> Google 相册地址： <a href="http://picasaweb.google.com/anikox/20090906IKEA" target="_blank">http://picasaweb.google.com/anikox/20090906IKEA</a></p>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-245.html</link>
	<title><![CDATA[ダイアモンド クレバス -- 菅野よう子 [ Macross Frontier ED ]]]></title>
	<author>Aion</author>
	<category><![CDATA[Music]]></category>
	<pubDate>2008-07-28 22:14</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-245.html</guid>	
	<description><![CDATA[<p>想发出这首歌是三周之前的事情了，低迷的状态呈现出的不可承受之轻让发篇不相干的Music博文都一拖再拖。明明是看完Code Geass R2 13话以后对本首歌产生了通感，现在已是16话播完，早已忘记了Shirley以离开了主线领了便当。比起上一季那首满是&ldquo;You&#39;re My Destiny&rdquo;的《<span class="t1">Masquerade</span>》，Macross Frontier 的ED《ダイアモンド クレバス 》似乎更适合此情此景此人。lulu走上修罗之路最后的救赎，再强大的Geass也不能挽留&hellip;&hellip;不管有多么不舍，lulu只能亲手埋葬他生命中的这朵玫瑰。<br /> 附上 Macross Frontier&nbsp; 的片尾曲，虽然和Code Geass 完全两个体系，可是听歌的感受是一样的。<br /><br /><font color="#339966">ダイアモンド クレバス【钻石裂痕】&nbsp; TV动画『MACROSS F』片尾曲<br /> 作词:hal/作曲:菅野よう子&nbsp; 编曲:菅野よう子 演唱:May&#39;n<!--more--><br /></font><br /><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="480" height="320"><param name="movie" value="http://tv.mofile.com/cn/xplayer.swf?v=CYJ4FSNE&amp;p=http://cache.mofile.com/tv/images/audio.jpg&amp;autoplay=0&amp;nowSkin=1_1" /><param name="quality" value="high" /><param name="menu" value="false" /><param name="wmode" value="" /></object></p><p><br /> 神様(かみさま)に恋(こい)をしてた頃(ころ)は 【当我爱上神明的那一刻】<br /> こんな別(わか)れが来(く)</p>]]></description>
</item>
<item>
	<link>http://www.anycc.com/blog/rewrite.php/read-244.html</link>
	<title><![CDATA[谈判专家ED -- 《黄金魂》]]></title>
	<author>Aion</author>
	<category><![CDATA[Music]]></category>
	<pubDate>2008-06-19 10:17</pubDate>
	<guid>http://www.anycc.com/blog/rewrite.php/read-244.html</guid>	
	<description><![CDATA[日剧《谈判专家》的片尾曲《黄金魂》，米仓凉子吃饭的样子真有趣，总会让人有肚子饿的感觉 ^^ 歌曲本身也很有劲。至于这部日剧～还是可以看看的。<br /><!--more--><br /><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="480" height="320"><param name="movie" value="http://tv.mofile.com/cn/xplayer.swf?v=3DTGI4QR&amp;p=http://cache.mofile.com/tv/static/pics/s1/2008/6/18/3D/TG/3DTGI4QR.jpg&amp;autoplay=0&amp;nowSkin=1_1" /><param name="quality" value="high" /><param name="menu" value="false" /><param name="wmode" value="" /></object>]]></description>
</item>
</channel>
</rss>