<?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>Developing Webs &#187; php</title>
	<atom:link href="http://sandaldjepit.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://sandaldjepit.com</link>
	<description>Think Forward, not Backward</description>
	<lastBuildDate>Mon, 15 Feb 2010 04:26:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Array to breadcrumb UL list</title>
		<link>http://sandaldjepit.com/2010/php-array-to-breadcrumb-list/</link>
		<comments>http://sandaldjepit.com/2010/php-array-to-breadcrumb-list/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 04:25:03 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[array to breadcrumb]]></category>
		<category><![CDATA[convert array to HTML list]]></category>
		<category><![CDATA[seo tool]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=212</guid>
		<description><![CDATA[Breadcrumb is navigation aid used in user interfaces.  It gives users a way to keep track of their locations within programs or documents.
A good breadcrumb navigation should be build with UL dan LI tag this is good for SEO tweak.
Below is the implementation in PHP scripting language, i made as a function so you [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/detect-search-engine-robot-name/' rel='bookmark' title='Permanent Link: Detect search engine robot on your website'>Detect search engine robot on your website</a></li><li><a href='http://sandaldjepit.com/2009/creating-user-online-program-with-php/' rel='bookmark' title='Permanent Link: Creating user online program with php'>Creating user online program with php</a></li><li><a href='http://sandaldjepit.com/2009/php-script-for-reading-rss/' rel='bookmark' title='Permanent Link: PHP script for reading RSS'>PHP script for reading RSS</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2010/php-array-to-breadcrumb-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display random post in Wordpress</title>
		<link>http://sandaldjepit.com/2009/display-random-post-in-wordpress/</link>
		<comments>http://sandaldjepit.com/2009/display-random-post-in-wordpress/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 02:55:11 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Random psosting]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WP Hack]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=183</guid>
		<description><![CDATA[Display random post in Wordpress.
We can display random post with orderby=rand command, for example :

query_posts('tag=whatever&#038;showposts=5&#038;offset=0&#038;orderby=rand');


&#60;ul class=&#34;random-posts&#34;&#62;
	&#60;?php query_posts('tag=whatever&#38;showposts=5&#38;offset=0&#38;orderby=rand'); ?&#62;
	&#60;?php if (have_posts()) : while (have_posts()) : the_post(); ?&#62;
	&#60;li&#62;
		&#60;a href=&#34;&#60;?php the_permalink(); ?&#62;&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;
	&#60;/li&#62;
	&#60;?php endwhile; endif; ?&#62;
&#60;/ul&#62;

For those of you who would like to setup some random post loops on your own site, here’s how to do it [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2007/halo-dunia/' rel='bookmark' title='Permanent Link: Wordpress atau Drupal ?'>Wordpress atau Drupal ?</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2009/display-random-post-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter</title>
		<link>http://sandaldjepit.com/2009/codeigniter/</link>
		<comments>http://sandaldjepit.com/2009/codeigniter/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 04:01:12 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[PHP Framework]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[codeIgniter]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=159</guid>
		<description><![CDATA[Overview.

CodeIgniter is a PHP framework, it was developed by EllisLab is a software developer based in Bend, Oregon which develops applications written in PHP, including ExpressionEngine and pMachinePro (currently pMachine Pro has been completely replaced by ExpressionEngine). At the time i write this article, CodeIgniter is the #1 on the top 10 php frameworks and [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/php-frameworks-comparison/' rel='bookmark' title='Permanent Link: PHP Frameworks comparison'>PHP Frameworks comparison</a></li><li><a href='http://sandaldjepit.com/2009/why-use-php-frameworks/' rel='bookmark' title='Permanent Link: Why Use PHP Frameworks?'>Why Use PHP Frameworks?</a></li><li><a href='http://sandaldjepit.com/2008/enable-http-compression-with-gzip/' rel='bookmark' title='Permanent Link: Enable HTTP compression with Gzip'>Enable HTTP compression with Gzip</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2009/codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Frameworks comparison</title>
		<link>http://sandaldjepit.com/2009/php-frameworks-comparison/</link>
		<comments>http://sandaldjepit.com/2009/php-frameworks-comparison/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 04:45:52 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[PHP Framework]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[framework comparison]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=153</guid>
		<description><![CDATA[Anyone still using barbarian-style php coding style nowadays ? silly thing i thing  . Well you better get move to frameworks..   the offering many features !. There are many php frameworks today, each of them offering many technology features such as Model View Controller (MCV), caching, more flexible with many database platform, [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/why-use-php-frameworks/' rel='bookmark' title='Permanent Link: Why Use PHP Frameworks?'>Why Use PHP Frameworks?</a></li><li><a href='http://sandaldjepit.com/2009/codeigniter/' rel='bookmark' title='Permanent Link: CodeIgniter'>CodeIgniter</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2009/php-frameworks-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating user online program with php</title>
		<link>http://sandaldjepit.com/2009/creating-user-online-program-with-php/</link>
		<comments>http://sandaldjepit.com/2009/creating-user-online-program-with-php/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:35:49 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[sql visitor online]]></category>
		<category><![CDATA[total visitor]]></category>
		<category><![CDATA[user online]]></category>
		<category><![CDATA[useronline sript]]></category>
		<category><![CDATA[useronline table]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=125</guid>
		<description><![CDATA[This tutorial script will guide you to show how much user online on a specific period of time on your website, all is count to total user online since specific time.  The idea is recording every request based on session id in php. Different session means different browser (visitor). Each different session count into [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/export-mysql-table-to-excel-file-using-php-script/' rel='bookmark' title='Permanent Link: Export MySQL table to Excel file using php script'>Export MySQL table to Excel file using php script</a></li><li><a href='http://sandaldjepit.com/2010/php-array-to-breadcrumb-list/' rel='bookmark' title='Permanent Link: PHP Array to breadcrumb UL list'>PHP Array to breadcrumb UL list</a></li><li><a href='http://sandaldjepit.com/2009/detect-search-engine-robot-name/' rel='bookmark' title='Permanent Link: Detect search engine robot on your website'>Detect search engine robot on your website</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2009/creating-user-online-program-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP script for reading RSS</title>
		<link>http://sandaldjepit.com/2009/php-script-for-reading-rss/</link>
		<comments>http://sandaldjepit.com/2009/php-script-for-reading-rss/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 09:02:25 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php DOM]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss reader]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=109</guid>
		<description><![CDATA[Ever think about displaying news thumbnail on your blog / website ? The RSS technology and PHP script make this possible.
RSS (an abbreviation for Really Simple Syndication) is a family of Web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format. An RSS document (which [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/handling-file-upload-using-php-script/' rel='bookmark' title='Permanent Link: Handling file upload using PHP Script'>Handling file upload using PHP Script</a></li><li><a href='http://sandaldjepit.com/2009/export-mysql-table-to-excel-file-using-php-script/' rel='bookmark' title='Permanent Link: Export MySQL table to Excel file using php script'>Export MySQL table to Excel file using php script</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2009/php-script-for-reading-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error_reporting(0) : hide those bads mann&#8230;!</title>
		<link>http://sandaldjepit.com/2008/error_reporting0-hide-those-bads-mann/</link>
		<comments>http://sandaldjepit.com/2008/error_reporting0-hide-those-bads-mann/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 08:24:43 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[error_reporting]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/2008/04/19/error_reporting0-hide-those-bads-mann/</guid>
		<description><![CDATA[Hari ini april 19, 2008 aku lagi cari-cari gambar Honda Revo, aku cari via Google yang di dapet alamat http://myhondarevo.com &#8230; hmm.. nice ! i love Google ! hehe&#8230; trus aku klik alamatnya &#8230; loh!.. WAALAAA&#8230;. error !!

Seharusnya nih ya error gini dalam PHP ga perlu ditampilkan dalam web yang sudah online, apalagi sampe seharian [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2008/validasi-form-menggunakan-javascript/' rel='bookmark' title='Permanent Link: Validasi Form menggunakan Javascript'>Validasi Form menggunakan Javascript</a></li><li><a href='http://sandaldjepit.com/2008/aneh-tapi-nyata-ga-bisa-buat-folder-dengan-nama-%e2%80%9ccon%e2%80%9d-di-system-operasi-windows-dos/' rel='bookmark' title='Permanent Link: Aneh tapi nyata : ga bisa buat folder dengan nama “con” di system Operasi Windows (DOS)'>Aneh tapi nyata : ga bisa buat folder dengan nama “con” di system Operasi Windows (DOS)</a></li><li><a href='http://sandaldjepit.com/2008/pengakuan-ada-temenku-merit-lageeee/' rel='bookmark' title='Permanent Link: Pengakuan : ada temenku merit lageeee&#8230;'>Pengakuan : ada temenku merit lageeee&#8230;</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2008/error_reporting0-hide-those-bads-mann/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress atau Drupal ?</title>
		<link>http://sandaldjepit.com/2007/halo-dunia/</link>
		<comments>http://sandaldjepit.com/2007/halo-dunia/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 02:37:36 +0000</pubDate>
		<dc:creator>atpaz</dc:creator>
				<category><![CDATA[Uncategories]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sandaldjepit.com/?p=1</guid>
		<description><![CDATA[Katanya sih&#8230; klo urusan nge-blog menurut Bruce Byfield kalo mao simple ya pilih Wordpress aja, tp klo mao agak rumit dan banyak pilihan, pilihlah Drupal !
nah, karena baru mao coba2 (takut di cacimaki, web programmer kok ga punya web / blog) ya aku nyoba Worpress aja&#8230; hehe..

  addthis_url    = 'http%3A%2F%2Fsandaldjepit.com%2F2007%2Fhalo-dunia%2F';
  [...]


Related posts:<ol><li><a href='http://sandaldjepit.com/2009/display-random-post-in-wordpress/' rel='bookmark' title='Permanent Link: Display random post in Wordpress'>Display random post in Wordpress</a></li></ol>]]></description>
		<wfw:commentRss>http://sandaldjepit.com/2007/halo-dunia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
