<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>「訪客計數器」的迴響</title>
	<atom:link href="https://twycf.com/?feed=rss2&#038;p=62" rel="self" type="application/rss+xml" />
	<link>https://twycf.com/?p=62</link>
	<description>工作、休閒之類的雜記</description>
	<lastBuildDate>Tue, 20 Nov 2012 12:34:14 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.8.38</generator>
	<item>
		<title>由：shinnlu</title>
		<link>https://twycf.com/?p=62&#038;cpage=1#comment-2031</link>
		<dc:creator><![CDATA[shinnlu]]></dc:creator>
		<pubDate>Sat, 26 Jul 2008 17:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://twycf.com/wordpress/archives/62#comment-2031</guid>
		<description><![CDATA[我沒有去追程式碼，不過計數器的原理就是把每一個訪客的讀取記錄下來
再加以分析，就得到網頁下面那幾個數字
如果要灌水的話，可以修改這一個 function counterize_getamount()]]></description>
		<content:encoded><![CDATA[<p>我沒有去追程式碼，不過計數器的原理就是把每一個訪客的讀取記錄下來<br />
再加以分析，就得到網頁下面那幾個數字<br />
如果要灌水的話，可以修改這一個 function counterize_getamount()</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：muki</title>
		<link>https://twycf.com/?p=62&#038;cpage=1#comment-2023</link>
		<dc:creator><![CDATA[muki]]></dc:creator>
		<pubDate>Thu, 24 Jul 2008 01:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://twycf.com/wordpress/archives/62#comment-2023</guid>
		<description><![CDATA[你好，我想請問一下他可以手動去修改現在的總人數嗎???
找很久都找不到]]></description>
		<content:encoded><![CDATA[<p>你好，我想請問一下他可以手動去修改現在的總人數嗎???<br />
找很久都找不到</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：shinnlu</title>
		<link>https://twycf.com/?p=62&#038;cpage=1#comment-1325</link>
		<dc:creator><![CDATA[shinnlu]]></dc:creator>
		<pubDate>Thu, 24 Jan 2008 06:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://twycf.com/wordpress/archives/62#comment-1325</guid>
		<description><![CDATA[那一個 %s 我有說明哦，請看上面有一行
&quot;將 %s 取代為你的 WordPress 前置字串，例如 wp_Counterize&quot;]]></description>
		<content:encoded><![CDATA[<p>那一個 %s 我有說明哦，請看上面有一行<br />
&#8220;將 %s 取代為你的 WordPress 前置字串，例如 wp_Counterize"</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：原罪</title>
		<link>https://twycf.com/?p=62&#038;cpage=1#comment-1324</link>
		<dc:creator><![CDATA[原罪]]></dc:creator>
		<pubDate>Tue, 22 Jan 2008 02:59:56 +0000</pubDate>
		<guid isPermaLink="false">http://twycf.com/wordpress/archives/62#comment-1324</guid>
		<description><![CDATA[小弟只能執行CREATE TABLE `wp_Counterize`的語法版本.]]></description>
		<content:encoded><![CDATA[<p>小弟只能執行CREATE TABLE `wp_Counterize`的語法版本.</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：原罪</title>
		<link>https://twycf.com/?p=62&#038;cpage=1#comment-1323</link>
		<dc:creator><![CDATA[原罪]]></dc:creator>
		<pubDate>Tue, 22 Jan 2008 02:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://twycf.com/wordpress/archives/62#comment-1323</guid>
		<description><![CDATA[SQL 語法: 

CREATE TABLE % sCounterize(

id integer NOT NULL AUTO_INCREMENT ,
IP varchar( 16 ) NOT NULL default &#039;unknown&#039;,
timestamp datetime NOT NULL default &#039;now()&#039;,
url varchar( 255 ) NOT NULL default &#039;unknown&#039;,
referer varchar( 255 ) NOT NULL default &#039;unknown&#039;,
useragent text,
PRIMARY KEY ( id ) 
) 

MySQL 傳回：  

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;%sCounterize
(
  id integer not null auto_increment,
  IP varchar(16) not nul&#039; at line 1 
]]></description>
		<content:encoded><![CDATA[<p>SQL 語法: </p>
<p>CREATE TABLE % sCounterize(</p>
<p>id integer NOT NULL AUTO_INCREMENT ,<br />
IP varchar( 16 ) NOT NULL default &#8216;unknown&#8217;,<br />
timestamp datetime NOT NULL default &#8216;now()&#8217;,<br />
url varchar( 255 ) NOT NULL default &#8216;unknown&#8217;,<br />
referer varchar( 255 ) NOT NULL default &#8216;unknown&#8217;,<br />
useragent text,<br />
PRIMARY KEY ( id )<br />
) </p>
<p>MySQL 傳回：  </p>
<p>#1064 &#8211; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;%sCounterize<br />
(<br />
  id integer not null auto_increment,<br />
  IP varchar(16) not nul&#8217; at line 1 </p>
]]></content:encoded>
	</item>
</channel>
</rss>
