<?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>Anistar RIA Blog &#187; PHP</title>
	<atom:link href="http://blog.riaproject.com/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.riaproject.com</link>
	<description>Rich Internet Application 知識誌</description>
	<lastBuildDate>Wed, 21 Dec 2011 05:43:31 +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>PHP5中利用PDO使用各種資料庫(dsn)</title>
		<link>http://blog.riaproject.com/php-mysql/1543.html</link>
		<comments>http://blog.riaproject.com/php-mysql/1543.html#comments</comments>
		<pubDate>Sun, 04 Jul 2010 06:20:07 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PDO]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=1543</guid>
		<description><![CDATA[PHP5以後除了使用mysql_connect這種救的方法連接資料庫之外，
加入了PDO的新功能可以用來連接資料庫，
好處在於在效能上改善很多，
而且未來在將系統移植道不同的資料庫時也比較方便，
所以我簡單的分享各種不同資料庫中的dsn設定方法：]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/1543.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>淺談PHP 5.3的 Namespace 的概念</title>
		<link>http://blog.riaproject.com/flex/1526.html</link>
		<comments>http://blog.riaproject.com/flex/1526.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 06:15:58 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=1526</guid>
		<description><![CDATA[PHP 5.3版中把之前拿掉的Namespace的概念又拉進來了，
這讓PHP大型專案可以避免類別名稱過長的問題，
例如在以前的PHP4或5中，
若要描述 company\Employee.php 這個檔案的話，
我們會故意將類別名設計為 Company_Employee，
今天我們就以這個例子寫一個小Sample出來：]]></description>
		<wfw:commentRss>http://blog.riaproject.com/flex/1526.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP上傳大檔需要注意的問題</title>
		<link>http://blog.riaproject.com/php-mysql/1488.html</link>
		<comments>http://blog.riaproject.com/php-mysql/1488.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 08:51:52 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[Flash Media Server]]></category>
		<category><![CDATA[Linux服務設定]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Setting]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=1488</guid>
		<description><![CDATA[PHP上傳大型檔案就必須要去注意檔案大小處理的問題了， 尤其是HD影音檔動則大到50MB， 今天剛好幫客戶處理影音的上傳與轉檔問題， 想到這應該會是很多初學者會遇到的問題， 所以順手發一篇關於檔案處理的內容提醒上來， 希望有人遇到問題的時候可以找到這個答案。 當PHP在處理上傳時，會參考php.ini中的設定， 老實說其預設值並沒有一個基準值， 例如我linux server上的設定是10MB， 而PC上的預設值是2MB， 反正超過其設定值就是通通都不准通過就是了， 若要調整上傳檔案的大小， 記得要調整php.ini的兩個地方， 一定要兩個設定都設好才會ok， 例如下方的設定： upload_max_filesize = 32M post_max_size = 32M 這樣一來就能限制檔案最大可上傳為32MB， 好了，祝各位好運囉。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/1488.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP中5個常用的系統常數</title>
		<link>http://blog.riaproject.com/php-mysql/1195.html</link>
		<comments>http://blog.riaproject.com/php-mysql/1195.html#comments</comments>
		<pubDate>Mon, 25 May 2009 03:14:09 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=1195</guid>
		<description><![CDATA[PHP程式撰寫中有5個常用的常數， 這些常數可以快速的幫助程式寫的人從中取得需要的資訊內容， 我將這5個常數整理如下： __LINE__ 顯示程式文件中的該行程式行號。 __FILE__ 程式檔的完整路徑和檔案名，如果用在於include的外部檔案中，則返回被include的檔案名。 __FUNCTION__ 執行的函數名稱，自 PHP 5 起本常數返回該函數被定義時的名字（區分大小寫）。 __CLASS__ 執行的類別名稱，自 PHP 5 起本常數返回該類被定義時的名字（區分大小寫）。 __METHOD__ 執行的類別方法名稱，返回該方法被定義時的名字（區分大小寫）。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/1195.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flex專題實作 &#8211; Rico精品時尚購物網 PART II</title>
		<link>http://blog.riaproject.com/flex/985.html</link>
		<comments>http://blog.riaproject.com/flex/985.html#comments</comments>
		<pubDate>Thu, 12 Feb 2009 02:13:30 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[學員作品]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=985</guid>
		<description><![CDATA[這次來介紹該網站的後台管理系統，畢竟一個完整的商業購物平台應用，怎麼可以沒有後端管理程式，整個專案是由Flex, ActionScript 3.0, PHP, MySQL完成的，接下來我簡單的介紹一下基本的功能，同樣這篇我也同時將操作的錄影影片給放在文章最後，想要觀看完整操作過程的人可以到文章的尾部觀看。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/flex/985.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flex專題實作 &#8211; Rico精品時尚購物網 PART I</title>
		<link>http://blog.riaproject.com/flex/963.html</link>
		<comments>http://blog.riaproject.com/flex/963.html#comments</comments>
		<pubDate>Fri, 06 Feb 2009 07:14:45 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[學員作品]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=963</guid>
		<description><![CDATA[跟大家分享我在優勢數位學苑就業培訓班上課，指導學員的專題實作所作的最後成品，在課程中我負責敎授Flex, ActionScript 3.0, PHP, MySQL, 系統整合, 專題實作的部份，整個專題是以網路上的商業購物平台為主題，分成前台的購物服務介面和後台的資料管理，因為內容還蠻豐富的，這篇我只介紹前台的部份，擇日在接著介紹後台的內容。]]></description>
		<wfw:commentRss>http://blog.riaproject.com/flex/963.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>PHP實作使用SQLite資料庫</title>
		<link>http://blog.riaproject.com/php-mysql/807.html</link>
		<comments>http://blog.riaproject.com/php-mysql/807.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 01:30:37 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=807</guid>
		<description><![CDATA[我做了一個簡單的PHP實作SQLite範例，用起來還真的有一些些不習慣，大概是我在AIR當中用的太爽了，結果才發現有些SQL在PHP中使用不出來，看來還需要稍微研究跟評估一下，其範例如下： &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62; &#60;html xmlns="http://www.w3.org/1999/xhtml"&#62; &#60;head&#62; &#60;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&#62; &#60;title&#62;SQLite實作&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;?php //建立SQLite連線 $db=sqlite_open("demo.db"); if($db){ echo("成功連接使用SQLite資料庫"); }else{ die("SQLite資料庫連接失敗..."); } //建立資料表 $sqlCommand="CREATE TABLE IF NOT EXISTS test(id INTEGER PRIMARY KEY, creation_date DATE)"; @sqlite_query($db,$sqlCommand); $sqlCommand="INSERT INTO test(creation_date) VALUES ('".date("Y-m-d H:i:s")."')"; sqlite_query($db,$sqlCommand); $sqlCommand="SELECT * FROM test ORDER BY id [...]]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/807.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP中使用SQLite的資訊</title>
		<link>http://blog.riaproject.com/php-mysql/804.html</link>
		<comments>http://blog.riaproject.com/php-mysql/804.html#comments</comments>
		<pubDate>Sun, 04 Jan 2009 09:57:07 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=804</guid>
		<description><![CDATA[這是我在收集PHP使用SQLite的資訊，因為我正在準備實行一些計畫，需要更輕量級的資料庫，所以我把看過覺得有用的資訊收集在這，若是有興趣的人可以參考使用． SQLit的介紹： 資料庫在處理大量的資料上是很必要的，但如果資料固定且量不多，或是資料庫只會在單機上使用，且沒有讓多人使用的需求的話，就不一定需要特別架一個資料庫系統；因此，可以使用類似 SQLite 這樣的嵌入式資料庫（embedded SQL database）。 SQLite 與其他一般資料庫差異不大，一般的 SQL-92 語法都能夠使用，而且不需要建立一個資料庫系統，要使用的時候，只要在編譯程式的時候將 SQLite 程式庫一起編入就可以使用。另外，SQLite 的資料庫（database）都是以單一檔案的形式存於磁碟中，不需要再安裝資料庫伺服器軟體，所以要把資料庫複製或建立在你的電腦上是相單簡單快速。 SQLite 是一個很小的 C 語言程式庫，且本身就完全包含資料庫引擎的功能，而且可以嵌入至其他程式中，完全不用額外的設定。其特性如下： 支援ACID (Atomic, Consistent, Isolated, Durable) transaction。 Zero-configuration：無須管理者的設定及管理。 支援大部分SQL92的語法。 資料庫存在於一個單一的檔案中。 資料庫系統所在機器的位元組順序(Byte order)無關。 支援大小至2 terabytes (2^41 bytes)。 記憶體需求小：小於3萬行的C語言程式碼。小於250KB的程式空間。 大部分的資料庫操作皆快於一般資料庫系統。 簡單易用的API。 支援TCL。也有其他語言的支援可用。 註解詳細的程式碼，以及超過90%的測試。 程式庫自己包含完整的功能，無須其他額外的程式或程式庫。 為public domain，可免費使用。 serverless cross-platform － 使用unicode 不會進行data type檢查 WIKI上的說明： http://wiki.oss.org.tw/index.php/Php_sqlite PHP官方說明： http://tw2.php.net/sqlite 實例說明等我有空再寫出來給大家看，其實wiki上已經寫的很清楚了 :p]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/804.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web2.0 RIA班級學員實作專題 &#8211; comPhone</title>
		<link>http://blog.riaproject.com/flash/288.html</link>
		<comments>http://blog.riaproject.com/flash/288.html#comments</comments>
		<pubDate>Wed, 02 Jan 2008 05:07:41 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WEB2.0]]></category>
		<category><![CDATA[學員作品]]></category>
		<category><![CDATA[酷站]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=288</guid>
		<description><![CDATA[網站不只要美觀，更要實用。網站一直難以滿足高互動性操作和易學易用的雙重需求，以前你可能要花費10倍以上的時間和力氣才能做出一個美觀但是卻不怎麼好用的網站，但是RIA技術卻能徹底解開這個噩夢，可以讓創意跟資料庫緊密接合在一起，成為商業應用的新寵兒。  comPhone是一個針對RIA商業網站的專題實作，創作團隊希望能用互動且即時的體驗降低使用者的挫折感，同時提供便利的資料管理後台讓廠商容易控管，透過課程中的扎實訓練，讓他們完全破除了多媒體設計人員無法勝任程式與資料庫工作的迷失，不僅如此，更結合了設計與程式的能力成為跨領域的專才。 comPhone是一個針對RIA商業網站的專題實作，創作團隊希望能用互動且即時的體驗降低使用者的挫折感，同時提供便利的資料管理後台讓廠商容易控管，透過課程中的扎實訓練，讓他們完全破除了多媒體設計人員無法勝任程式與資料課程所學與應用技術工作的迷失，不僅如此，更結合了設計與程式的能力成為跨領域的專才。 Photoshop 網站版型設計，商品圖形處理。 Illustrator 網站互動元件設計。 AfterEffects 動畫要素特效處理。 Dreamweaver 網頁整合，PHP程式撰寫。 Flash 網站動畫，互動平台建置。 ActionScript、Flash Remoting 商品即時互動人機介面控制，遠端資料交換。 PHP 資料庫運用與分析維護。 MySQL 資料存放、篩選和管理。 這些同學都非常的用心而且下了非常多的苦工，若是公司有需要RIA、多媒體、資料庫應用這方面的人才可以用電子郵件跟他們聯絡安排面試，我將他們的聯絡方式留在下面： 杜浩羽 horace24@gmail.com 楊政信 lannesyang@hotmail.com 呂美華 strool216@yahoo.com.tw 李守華 hand_lee@hotmail.com 黃淑鳳 susan2398@gmail.com 團隊合作分工：]]></description>
		<wfw:commentRss>http://blog.riaproject.com/flash/288.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>PHP Error message &#8211; Cannot modify header information</title>
		<link>http://blog.riaproject.com/php-mysql/237.html</link>
		<comments>http://blog.riaproject.com/php-mysql/237.html#comments</comments>
		<pubDate>Tue, 27 Nov 2007 23:40:05 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=237</guid>
		<description><![CDATA[Warning: Cannot modify header information &#8211; headers already sent by ????  若是PHP出現在執行時出現這段訊息，而造成無法正常的將網頁導引至某頁，有可能是PHP的設定沒有設好的關係。 試著打開php.ini設定檔，並找到 output_buffering的項目，將註解拿掉(去掉前面的#)，在後面輸入 4096或更高的數值，應該就可以了，設完請記得重新啟動Apache即可。 發生環境為PHP 5.21]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/237.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

