<?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>coretan si cuplis &#187; PHP</title>
	<atom:link href="http://cuplis.net/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://cuplis.net</link>
	<description>learn the way, define your own way</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:29:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>install mongodb and phpdriver on ubuntu</title>
		<link>http://cuplis.net/2012/04/25/install-mongodb-and-phpdriver-on-ubuntu/</link>
		<comments>http://cuplis.net/2012/04/25/install-mongodb-and-phpdriver-on-ubuntu/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 15:00:37 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mongoDB]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=985</guid>
		<description><![CDATA[instalasi mongodb di ubuntu bisa dilakukan dengan beberapa step berikut : user@computer:$ cd /opt/curl http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.4.tgz &#62; mongo.tgztar xzf mongo.tgzsudo mkdir -p /data/db/sudo chown 'ditto' /data/db/ jalankan mongodb server di terminal : user@computer:$ ./mongodb-linux-x86_64-2.0.4/bin/mongod &#38; untuk masuk ke dalam terminal mongodb jalankan perintah berikut : user@computer:$ ./mongodb-linux-x86_64-2.0.4/bin/mongo&#62; db.foo.save( { a : 1 } )&#62; db.foo.find(){ "_id" [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2012/04/25/install-mongodb-and-phpdriver-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my yii blog error</title>
		<link>http://cuplis.net/2011/01/02/my-yii-blog-error/</link>
		<comments>http://cuplis.net/2011/01/02/my-yii-blog-error/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 10:01:17 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[yii]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=838</guid>
		<description><![CDATA[beberapa hari lalu iseng2 baca yii framework yang saat ngetik posting ini masih menempati urutan pertama berdasarkan http://www.phpframeworks.com/top-10-php-frameworks/. masih belum banyak yang bisa di explore dari framework ini, soalnya baru sempat nyoba demo buat blognya saja. itu pun di localhost. sudah nyoba diupload ke http://cuplis.net/others/sinau/yii/blog/ tapi masih error. udah cari 2 hari gak ketemu, akhirnya [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2011/01/02/my-yii-blog-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>algoritma deret fibonacci</title>
		<link>http://cuplis.net/2010/04/15/algoritma-deret-fibonacci/</link>
		<comments>http://cuplis.net/2010/04/15/algoritma-deret-fibonacci/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:33:34 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Algoritma]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Flowchart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=747</guid>
		<description><![CDATA[nih mumpung masih hangat, salah satu algoritma deret fibonacci : flowchart : contoh program : $limit = 10; $fibonacci = &#34;&#34;; for&#40;$i=1;$i&#60;=$limit;$i++&#41;&#123; if&#40;$i == 1&#41;&#123; $value&#91;$i&#93;=1; &#125;else&#123; $value&#91;$i&#93;=$value&#91;$i-2&#93; + $value&#91;$i-1&#93;; &#125; $fibonacci .= $value&#91;$i&#93;.&#34; &#34;; &#125; echo $fibonacci; output : 1 1 2 3 5 8 13 21 34 55]]></description>
		<wfw:commentRss>http://cuplis.net/2010/04/15/algoritma-deret-fibonacci/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>algoritma segi tiga pascal</title>
		<link>http://cuplis.net/2010/04/15/algoritma-segi-tiga-pascal/</link>
		<comments>http://cuplis.net/2010/04/15/algoritma-segi-tiga-pascal/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 13:16:45 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Algoritma]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Flowchart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=734</guid>
		<description><![CDATA[mumpung masih hangat, berikut ini salah satu contoh algoritma segitiga pascal beserta contoh codingnya di php flowchart : contoh program : $limit = 6; $pascal = &#34;&#34;; for&#40;$i=1;$i&#60;=$limit;$i++&#41;&#123; for&#40;$j=1;&#60;=$i;$j++&#41;&#123; if&#40;$j==1 &#124;&#124; $j==$i&#41;&#123; $value&#91;$i&#93;&#91;$j&#93; = 1; &#125;else&#123; $value&#91;$i&#93;&#91;$j&#93; = $value&#91;$i-1&#93;&#91;$j&#93; + $value&#91;$i-1&#93;&#91;$j-1&#93;; &#125; $pascal .= $value&#91;$i&#93;&#91;$j&#93;.&#34; &#34;; &#125; $pascal .= &#34; \n&#34;; &#125; echo $pascal; output [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2010/04/15/algoritma-segi-tiga-pascal/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>how to configure php as fastcgi on nginx</title>
		<link>http://cuplis.net/2009/10/04/how-to-configure-php-as-fastcgi-on-nginx/</link>
		<comments>http://cuplis.net/2009/10/04/how-to-configure-php-as-fastcgi-on-nginx/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 10:27:06 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=691</guid>
		<description><![CDATA[install php user@computer:$ sudo apt-get install php5-cgi buat file /etc/default/php-fastcgi user@computer:$ sudo vim /etc/default/php-fastcgiSTART=yes# Which user runs PHP? (default: www-data)EXEC_AS_USER=www-data# Host and TCP port for FASTCGI-Listener (default: localhost:9000)FCGI_HOST=localhostFCGI_PORT=8888# Environment variables, which are processed by PHPPHP_FCGI_CHILDREN=4PHP_FCGI_MAX_REQUESTS=1000 buat file /etc/init.d/php-fastcgi user@computer:$ sudo vim /etc/init.d/php-fastcgi#! /bin/bash### BEGIN INIT INFO# Provides:          php-fastcgi# Required-Start:    $all# Required-Stop:     $all# Default-Start:     2 3 [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2009/10/04/how-to-configure-php-as-fastcgi-on-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>captcha security images</title>
		<link>http://cuplis.net/2008/01/19/captcha-security-images/</link>
		<comments>http://cuplis.net/2008/01/19/captcha-security-images/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 03:45:09 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=605</guid>
		<description><![CDATA[Sebagian besar dari programmer pasti sudah mengetahui, bahkan sudah banyak yang mampu membuat kode keamanan untuk menangani spam atau biasa dikenal sebagai Completely Automated Public Turing test to tell Computers and Humans Apart (Captcha) :thumbs . Captcha berfungsi sebagai penguji otomatis untuk membedakan antara komputer dan manusia. Algoritma CAPTCHA ini digunakan untuk melawan spambot, yakni [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2008/01/19/captcha-security-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>create csv file</title>
		<link>http://cuplis.net/2007/12/16/create-csv-file/</link>
		<comments>http://cuplis.net/2007/12/16/create-csv-file/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 07:57:10 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=612</guid>
		<description><![CDATA[Berikut ini adalah contoh script php yang bisa dipakai jika kita ingin membuat file CSV. Bisa juga dikombinasikan dengan data2 yang ada di dalam database. &#60;?php $list = array ( &#8216;aaa,bbb,ccc,dddd&#8217;, &#8217;123,456,789&#8242;, &#8216;&#8221;aaa&#8221;,&#8221;bbb&#8221;&#8216; ); $fp = fopen(&#8216;file.csv&#8217;, &#8216;w&#8217;); foreach ($list as $line) { fputcsv($fp, split(&#8216;,&#8217;, $line)); } fclose($fp); ?&#62;]]></description>
		<wfw:commentRss>http://cuplis.net/2007/12/16/create-csv-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>upload file ke server pada PHP</title>
		<link>http://cuplis.net/2007/12/16/upload-file-ke-server-pada-php/</link>
		<comments>http://cuplis.net/2007/12/16/upload-file-ke-server-pada-php/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 06:55:39 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=601</guid>
		<description><![CDATA[Dalam pembuatan sebuah website interaktif tak jarang kita memanfaatkan fasilitas upload pada website tersebut. Sedangkan untuk script upload yang biasa digunakan dalam php adalah upload dengan method post. Fasilitas ini seharusnya diikuti dengan menggunakan validasi PHP dan memanipulasi sebuah fungsi, dan anda memiliki kontrol penuh untuk mengizinkan orang-orang dengan hak akses tertentu untuk melakukan proses [...]]]></description>
		<wfw:commentRss>http://cuplis.net/2007/12/16/upload-file-ke-server-pada-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

