2012年12月23日 星期日

[phpBB]如何改標題圖片

\phpbb\templates\subSilver\images下的logo_phpBB.gif置換一下即可

註冊條款
language\zh_cmn_hant\ucp.php
找'TERMS_OF_USE_CONTENT'

2012年12月13日 星期四

取出EXCEL欄位中的超連結

Sub 取出超連結網址()
 Dim xR As Range
 For Each xR In Range([A2], [a65536].End(xlUp))
   If xR.Hyperlinks.Count > 0 Then
    xR(1, 5) = xR.Hyperlinks(1).Address
   End If
 Next
End Sub


資料來源:http://tw.knowledge.yahoo.com/question/question?qid=1511092001951

2012年12月10日 星期一

[mySQL]資料取出是問號

編碼問題
請在連接資料庫後,加上一行
@mysql_query ("set names utf8;", $this->db_connect_id);