<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>青澀的邂逅</title>
	<atom:link href="http://thedc.idv.tw/wp/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://thedc.idv.tw/wp</link>
	<description>分享、心情</description>
	<lastBuildDate>Thu, 22 Mar 2012 08:06:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>spicework連線錯誤問題</title>
		<link>http://thedc.idv.tw/wp/?p=372</link>
		<comments>http://thedc.idv.tw/wp/?p=372#comments</comments>
		<pubDate>Thu, 22 Mar 2012 08:06:56 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[圖書館]]></category>
		<category><![CDATA[MIS]]></category>
		<category><![CDATA[spicework]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=372</guid>
		<description><![CDATA[spicework很難抓到完整遠端機器資訊 後來用了一些方式 1.關閉winsdows防火牆 2.安裝SNMP服務 3.spicework連線這邊SNMP登入為public其他登入為none 搞定]]></description>
			<content:encoded><![CDATA[<p>spicework很難抓到完整遠端機器資訊<br />
後來用了一些方式<br />
1.關閉winsdows防火牆<br />
2.安裝SNMP服務<br />
3.spicework連線這邊SNMP登入為public其他登入為none<br />
搞定</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=372</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[EXP]新增php的ssl</title>
		<link>http://thedc.idv.tw/wp/?p=364</link>
		<comments>http://thedc.idv.tw/wp/?p=364#comments</comments>
		<pubDate>Mon, 19 Mar 2012 06:45:15 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=364</guid>
		<description><![CDATA[xampp環境 php/php.ini 新增extension=php_openssl.dll]]></description>
			<content:encoded><![CDATA[<p>xampp環境<br />
php/php.ini<br />
新增extension=php_openssl.dll</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=364</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php下拉式選單的預設值</title>
		<link>http://thedc.idv.tw/wp/?p=365</link>
		<comments>http://thedc.idv.tw/wp/?p=365#comments</comments>
		<pubDate>Thu, 29 Dec 2011 08:27:35 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[php & mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=365</guid>
		<description><![CDATA[參考過很多種php下拉式選單預設值的設定方式 但是對於程式碼苦手以及搭配DW的人會很不好處理，一直試著找尋簡易的方式&#8230; 目前適用於單一下拉式選單 如果單純用DW做一個PHP取值的下拉式選單如下&#8230; &#60;select name="sec" id="sec"&#62; &#60;?php  do {  ?&#62;           &#60;option value="&#60;?php echo $row_rc_sec['se_num']?&#62;" &#62; &#60;?php echo $row_rc_sec['se_id']?&#62;&#60;/option&#62;...]]></description>
			<content:encoded><![CDATA[<p>參考過很多種php下拉式選單預設值的設定方式<br />
但是對於程式碼苦手以及搭配DW的人會很不好處理，一直試著找尋簡易的方式&#8230;<br />
目前適用於單一下拉式選單</p>
<p>如果單純用DW做一個PHP取值的下拉式選單如下&#8230;<br />
&lt;select name="sec" id="sec"&gt;<br />
&lt;?php  do {  ?&gt;<br />
          &lt;option value="&lt;?php echo $row_rc_sec['se_num']?&gt;" &gt;<br />
&lt;?php echo $row_rc_sec['se_id']?&gt;&lt;/option&gt;<br />
&lt;?php<br />
} while ($row_rc_sec = mysql_fetch_assoc($rc_sec));<br />
  $rows = mysql_num_rows($rc_sec);<br />
  if($rows &gt; 0) {<br />
      mysql_data_seek($rc_sec, 0);<br />
   $row_rc_sec = mysql_fetch_assoc($rc_sec);<br />
  }<br />
?&gt;<br />
 &lt;/select&gt;<br />
這樣只會把選單通通叫出來，無指定預設值，但我現在想要預設成另一個資料表中的值</p>
<p>若要指定預設值，先指定變數$aa為想要的預設值$row_rc_t['se_num']<br />
&lt;?php $aa=$row_rc_t['se_num'];?&gt;</p>
<p>接著在&lt;option value="&lt;?php echo $row_rc_sec['se_num']?&gt;" &gt;中加入判斷式<br />
&lt;?php if($row_rc_sec['se_num']==$aa){echo &#8216;selected&#8217;;}?&gt;<br />
所以變成<br />
&lt;option value="&lt;?php echo $row_rc_sec['se_num']?&gt;"<br />
&lt;?php if($row_rc_sec['se_num']==$aa){echo &#8216;selected&#8217;;}?&gt;<br />
&gt;<br />
這樣就會指定預設值了</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=365</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>port80被system佔用？</title>
		<link>http://thedc.idv.tw/wp/?p=362</link>
		<comments>http://thedc.idv.tw/wp/?p=362#comments</comments>
		<pubDate>Thu, 24 Nov 2011 01:54:24 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[網路相關]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=362</guid>
		<description><![CDATA[World Wide Web Publishing Service服務不知道為啥開啟了 這是給IIS用的]]></description>
			<content:encoded><![CDATA[<p>World Wide Web Publishing Service服務不知道為啥開啟了</p>
<p>這是給IIS用的</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=362</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>受保護的文章：溝通</title>
		<link>http://thedc.idv.tw/wp/?p=358</link>
		<comments>http://thedc.idv.tw/wp/?p=358#comments</comments>
		<pubDate>Mon, 07 Nov 2011 01:30:21 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[心情雜談]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=358</guid>
		<description><![CDATA[受保護的文章不會產生摘要。]]></description>
			<content:encoded><![CDATA[<form action="http://thedc.idv.tw/wp/wp-pass.php" method="post">
<p>本文受密碼保護，須填寫您的密碼才能閱讀。</p>
<p><label for="pwbox-358">密碼：<br />
<input name="post_password" id="pwbox-358" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="送出" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=358</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>修改php預設時區</title>
		<link>http://thedc.idv.tw/wp/?p=355</link>
		<comments>http://thedc.idv.tw/wp/?p=355#comments</comments>
		<pubDate>Fri, 21 Oct 2011 03:36:50 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[php & mysql]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=355</guid>
		<description><![CDATA[[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = Asia/Taipei]]></description>
			<content:encoded><![CDATA[<p>[Date]<br />
; Defines the default timezone used by the date functions<br />
; <a href="http://php.net/date.timezone">http://php.net/date.timezone</a><br />
date.timezone = Asia/Taipei</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=355</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[EXP]incorrect table name &quot;問題</title>
		<link>http://thedc.idv.tw/wp/?p=352</link>
		<comments>http://thedc.idv.tw/wp/?p=352#comments</comments>
		<pubDate>Tue, 18 Oct 2011 05:44:05 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[dw]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=352</guid>
		<description><![CDATA[使用DW若出現此問題 代表update或insert的table名稱有錯誤 例如table叫做aaa變成"aaa" 把多餘"刪掉即可]]></description>
			<content:encoded><![CDATA[<p>使用DW若出現此問題</p>
<p>代表update或insert的table名稱有錯誤</p>
<p>例如table叫做aaa變成"aaa"</p>
<p>把多餘"刪掉即可</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=352</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>櫃臺注意事項</title>
		<link>http://thedc.idv.tw/wp/?p=348</link>
		<comments>http://thedc.idv.tw/wp/?p=348#comments</comments>
		<pubDate>Thu, 13 Oct 2011 03:31:46 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[流通經驗]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=348</guid>
		<description><![CDATA[1.流通有一定規則，有些館員專用規則盡量不要干擾正常程序 2.系統跑出的訊息都代表有狀況，不要無視 3.初次借還書前一定要重登Millennium以及設定收據印表機，結束後登出 4.罰款自己先收，會有人來要]]></description>
			<content:encoded><![CDATA[<p>1.流通有一定規則，有些館員專用規則盡量不要干擾正常程序</p>
<p>2.系統跑出的訊息都代表有狀況，不要無視</p>
<p>3.初次借還書前一定要重登Millennium以及設定收據印表機，結束後登出</p>
<p>4.罰款自己先收，會有人來要</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=348</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>關於流通通知單</title>
		<link>http://thedc.idv.tw/wp/?p=346</link>
		<comments>http://thedc.idv.tw/wp/?p=346#comments</comments>
		<pubDate>Thu, 13 Oct 2011 03:29:18 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=346</guid>
		<description><![CDATA[通知單的關聯為&#8230; 通知單主旨&#8211;&#62;E-mail主旨編號 通知單內容&#8211;&#62;流通規則&#8211;&#62;流通通知單文句 最多可設定6次間隔時間，但發出的通知單只有5次（5催），另外有前2次的即將到期和隔日到期通知 已有預約跟沒人預約狀況所發出的逾期通知不同 若有人預約但未逾期也會發出通知單（代表不可續借，至於會不會縮短借期依據借前是否有人預約）]]></description>
			<content:encoded><![CDATA[<p>通知單的關聯為&#8230;</p>
<p>通知單主旨&#8211;&gt;E-mail主旨編號<br />
通知單內容&#8211;&gt;流通規則&#8211;&gt;流通通知單文句</p>
<p>最多可設定6次間隔時間，但發出的通知單只有5次（5催），另外有前2次的即將到期和隔日到期通知</p>
<p>已有預約跟沒人預約狀況所發出的逾期通知不同</p>
<p>若有人預約但未逾期也會發出通知單（代表不可續借，至於會不會縮短借期依據借前是否有人預約）</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=346</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>欄位預設名稱</title>
		<link>http://thedc.idv.tw/wp/?p=343</link>
		<comments>http://thedc.idv.tw/wp/?p=343#comments</comments>
		<pubDate>Fri, 07 Oct 2011 03:56:58 +0000</pubDate>
		<dc:creator>杉原 雨</dc:creator>
				<category><![CDATA[Webpac]]></category>

		<guid isPermaLink="false">http://thedc.idv.tw/wp/?p=343</guid>
		<description><![CDATA[有些token會顯示名稱，該名稱要修改的話要去修改變長欄（不過要III去改，不能自己改） 例如&#60;!&#8211;{emailprompt}&#8211;&#62;會顯示EMAIL ADDR]]></description>
			<content:encoded><![CDATA[<p>有些token會顯示名稱，該名稱要修改的話要去修改變長欄（不過要III去改，不能自己改）</p>
<p>例如&lt;!&#8211;{emailprompt}&#8211;&gt;會顯示EMAIL ADDR</p>
]]></content:encoded>
			<wfw:commentRss>http://thedc.idv.tw/wp/?feed=rss2&#038;p=343</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

