<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>my Bahasa as bad as my English</title>
	<atom:link href="http://gunturris.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gunturris.wordpress.com</link>
	<description>Feel, Touch, Try Write, and Posting here</description>
	<lastBuildDate>Thu, 01 Mar 2007 08:32:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gunturris.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>my Bahasa as bad as my English</title>
		<link>http://gunturris.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gunturris.wordpress.com/osd.xml" title="my Bahasa as bad as my English" />
	<atom:link rel='hub' href='http://gunturris.wordpress.com/?pushpress=hub'/>
		<item>
		<title>OOP Javascript</title>
		<link>http://gunturris.wordpress.com/2007/03/01/oop-javascript/</link>
		<comments>http://gunturris.wordpress.com/2007/03/01/oop-javascript/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 08:32:53 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Dynamic Web Development]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2007/03/01/oop-javascript/</guid>
		<description><![CDATA[Already heard about Object Oriented Programming on Javscript, well !, now post it in here cos i think this very important, specially people who will concern about AJAX scripting. However know about OOP on Javascript will make you better on Javascript programing. This is a very simple sample, how to write: &#60;script language="Javascript"&#62; ProgKu={ pariabelsatu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=14&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Already heard  about  Object Oriented Programming on Javscript, well !,  now  post it in here cos i think this very important, specially people who will concern about AJAX scripting. However know about OOP on Javascript will  make  you better on  Javascript programing.</p>
<p>This is a very simple sample, how to write:<br />
<code><br />
&lt;script language="Javascript"&gt;</code></p>
<p><code><br />
ProgKu={<br />
pariabelsatu : "Javascript" ,<br />
</code><code>   </code><code> parkedua     : "" ,<br />
</code><code>   </code><code> fungsiSatu :<br />
</code><code>   </code><code>   </code><code> function(val){<br />
</code><code>   </code><code>   </code><code>   </code><code> if (  ( (val * 5) % 2 ) == 0 ) {<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> this.pariabelsatu = "Javascript hasil OOPJs";<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> this.parkedua = "Genap" ;<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> return true;<br />
</code><code>   </code><code>   </code><code>   </code><code> }else{<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> this.pariabelsatu = "Hasil gak bener";<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> this.parkedua = "Ganjil" ;<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> return true;<br />
</code><code>   </code><code>   </code><code>   </code><code></code><code>}<br />
</code><code>   </code><code>   </code><code> }<br />
</code><code>   </code><code> fungsiDua :<br />
</code><code>   </code><code>   </code><code> function(){<br />
</code><code>   </code><code>   </code><code>   </code><code> var t = prompt("Masukan angka 1 hingga 1000");<br />
</code><code>   </code><code>   </code><code>   </code><code> var myVal = parseInt(t);<br />
</code><code>   </code><code>   </code><code>   </code><code> if(isNaN(myVal)){<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> alert("Yang dimasukan bukan angka");<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> return false;<br />
</code><code>   </code><code>   </code><code>   </code><code> }else{<br />
</code><code>   </code><code>   </code><code>   </code><code>   </code><code> this.fungsiSatu(myVal);<br />
</code><code>   </code><code>   </code><code>   </code><code> }<br />
</code><code>   </code><code>   </code><code> }<br />
}</code><br />
<code><br />
//Sudah diluar class<br />
function cobaCoba(){<br />
var h = ProgKu.fungsiDua();<br />
document.getElementById("test").innerHTML =<br />
h.pariabelsatu +" mungkin karena "+h.parkedua;<br />
}</code></p>
<p>And on HTML please put this code :</p>
<p><code>&lt;div id="test"&gt;Look at here&lt;/div&gt;</code></p>
<p>OK, have nice try :p</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=14&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2007/03/01/oop-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Create watermark on the Fly</title>
		<link>http://gunturris.wordpress.com/2007/02/26/create-watermark-on-the-fly/</link>
		<comments>http://gunturris.wordpress.com/2007/02/26/create-watermark-on-the-fly/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 03:50:22 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Dynamic Web Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2007/02/26/create-watermark-on-the-fly/</guid>
		<description><![CDATA[I come to office earlier now. At a momment i just read my schedule of what will i do for today&#8230;? Let me see. ooh God, I have job to create a script which can protect all photo in my project using Logo, and i guess that i have to create watermark script. However, it&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=11&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I come to office earlier now. At a momment i just read my schedule of what will i do for today&#8230;? Let me see. ooh God, I have job to create a script which can protect all photo in my project using Logo, and i guess that i have to create watermark script.</p>
<p>However, it&#8217;s very interisting to create it. OK let&#8217;s create it&#8230;!!! (And don&#8217;t forget to help me if i&#8217;m wrong.. ). And this is the code which i used in my script:</p>
<p><code><br />
&lt;?php<br />
/*create watermark<br />
*By Gunturris - gunturris#a.t#gmail.com<br />
*End of Feb 2007<br />
*$imagesorce is original image<br />
*$imagelogo is logo to blending (I used PNG)<br />
*$alpha is alpha color output for watermark    */</code></p>
<p><code><br />
function watermak_on_the_fly($imagesource, $imagelogo, $alpha=15 ){<br />
header("content-type: image/png");<br />
//Check image resourse<br />
if(! file_exists($</code><code>imagesource</code><code>)){<br />
$im = @imagecreate(50, 150)<br />
or die("Cannot Initialize new GD image stream");<br />
$background_color = imagecolorallocate($im, 255, 255, 255);<br />
$text_color = imagecolorallocate($im, 233, 14, 91);<br />
imagestring($im, 1, 5, 5,  "Img not found", $text_color);<br />
imagepng($im);<br />
return imagedestroy($im);<br />
}</code><br />
<code><br />
//Check watermark logo<br />
if(! file_exists($imagelogo)){<br />
$im = @imagecreate(50, 150)<br />
or die("Cannot Initialize new GD image stream");<br />
$background_color = imagecolorallocate($im, 255, 255, 255);<br />
$text_color = imagecolorallocate($im, 233, 14, 91);<br />
imagestring($im, 1, 5, 5,  "Logo not found", $text_color);<br />
imagepng($im);<br />
return imagedestroy($im);<br />
}</code><br />
<code><br />
settype($alpha,"integer");<br />
if($alpha &gt; 100) $alpha=100;<br />
if($alpha &lt; 0 )$alpha = 0;</code><br />
<code><br />
list($ori_width,$ori_height,$ori_type,$ori_attr)=getimagesize($</code><code>imagesource</code><code>);<br />
switch($type){<br />
case 1 : $img = @imagecreatefromgif($</code><code>imagesource</code><code>);break;  //GIF<br />
case 2 : $img = @imagecreatefromjpeg($</code><code>imagesource</code><code>); break;  //JPG<br />
case 3 : $img = @imagecreatefrompng($</code><code>imagesource</code><code>); break;  //PNG<br />
default : die("IMAGE NOT SUPPORTED!"); break;<br />
} </code><br />
<code><br />
$watermark = imagecreatefrompng( $imagelogo );<br />
$watermark_width = imagesx($watermark);<br />
$watermark_height = imagesy($watermark);</code><br />
<code><br />
@imagecopymerge($img, $watermark, 0, ($ori_height-$watermark_height-5), 0, 0, $watermark_width, $watermark_height, $alpha);</code><br />
<code><br />
return $img;</code><br />
<code><br />
}<br />
?&gt;</code></p>
<p>And to use just &#8216;do&#8217; like this:<br />
<code><br />
&lt;?php<br />
$test = watermak_on_the_fly("imagejpeg.jpeg", "logo.png",25);<br />
@imagejpeg($test );<br />
@imagedestroy($test);<br />
?&gt;</code><br />
OK, I hope it&#8217;s works good, if not please tell me or please debug by your self. Cos in my computer is no problem :p</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=11&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2007/02/26/create-watermark-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Force-download use PHP</title>
		<link>http://gunturris.wordpress.com/2007/02/22/force-download-use-php/</link>
		<comments>http://gunturris.wordpress.com/2007/02/22/force-download-use-php/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 03:41:16 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2007/02/22/force-download-use-php/</guid>
		<description><![CDATA[Wuih.. There&#8217;s long time for me do not write any to here. It&#8217;s cause my job deadline.. hehehe&#8230; Anyway, Now, I want to write about force-download on PHP. Why i write this? Yeah, i just feel that this technique was good for share private download file(s), cos many my friend ask me if they add [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=9&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wuih..<br />
There&#8217;s long time for me do not write any to  here.<br />
It&#8217;s cause  my  job deadline.. hehehe&#8230;</p>
<p><code>Anyway, Now, I want to write about force-download on PHP.<br />
Why i write this? Yeah, i just feel that this technique was good for share private download file(s), cos many my friend ask me if they add file in public_html it is not secure, and not private.</code></p>
<p>So please do like this:<br />
<code><br />
/home/project/public_html/  //&lt;&lt;&lt; this path for world<br />
/home/project/content/    //&lt;&lt;&lt; this for private share file</code></p>
<p>And every file will download is from private and if want to download must login 1st, and script will like this.<br />
<code><br />
</code><code>&lt;?php</code><code><br />
define("DOWNLOAD_PATH","/home/project/content/"); // location to download<br />
class loginToDownload{</code><br />
<code><br />
var $username = "guntur";  //User can get from DB<br />
var $password = "test";  //Password can get from DB<br />
var $file_to_download = "test.txt";<br />
</code><code><br />
function authen($user,$pass,$filename){<br />
if($user == $this-&gt;username   and  $pass == $this-&gt;password  ){<br />
//Get file<br />
$filephysics = DOWNLOAD_PATH.$filename;<br />
if( $this-&gt;download($filephysics) ) return true;  //success download<br />
}</code><br />
<code><br />
return false; //failed to download<br />
}</code><br />
<code><br />
function download($fname){<br />
if(! file_exists($fname) ) return false; //Checkin' file<br />
$filesize = filesize($fname);<br />
$filemimetype = mime_content_type($fname);<br />
$exten = end( explode($fname,".") );</code><br />
<code><br />
header('Content-type: '. $filemimetype );<br />
header('Content-Disposition: inline	; filename="doload.'. $exten . '" ');<br />
print(file_get_contents($fname));<br />
exit;<br />
}<br />
}//end class<br />
?&gt;<br />
</code></p>
<p>And please try, and report if wrong, cos i don&#8217;t test it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
OK, bro, have nice try&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=9&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2007/02/22/force-download-use-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>CakePHP vs Symfony, hmm..???</title>
		<link>http://gunturris.wordpress.com/2007/02/22/cakephp-vs-symfony-hmm/</link>
		<comments>http://gunturris.wordpress.com/2007/02/22/cakephp-vs-symfony-hmm/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 02:56:31 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Dynamic Web Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2007/02/22/cakephp-vs-symfony-hmm/</guid>
		<description><![CDATA[After i found a PHP framework who is called cakePHP, now i heard about the other ones framework which it&#8217;s name Symfony PHP5. So what is different between both of its &#8230;? I don&#8217;t know much, but i can see several difference from its. Installation, server requirement phpCake use PHP 4.3 or greater, and Symfony [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=10&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After i found a PHP framework who is called <a href="http://www.cakePHP.org" title="cakePHP official website" target="_blank">cakePHP</a>, now i heard about the other ones framework which it&#8217;s name <a href="http://www.symfony-project.com" title="Symfony Project" target="_blank">Symfony</a> PHP5.</p>
<p>So what is different between both of its &#8230;? I don&#8217;t know much, but i can see several difference from its.</p>
<ul>
<li><strong>Installation</strong>, server requirement phpCake use PHP 4.3 or greater, and Symfony must use  5</li>
<li><strong>Database</strong>, Symfony compatible with most engine like MySQL, Ms SQL, PostgreSQL and Oracle, but i don&#8217;t see cakePHP can use Oracle engine.</li>
<li><strong>Models</strong>, Symfony has two versions of the data object model in two different  directories and not for cakePHP</li>
<li><strong>Propel XML,</strong> Symfony understands the Propel native XML schema format and i don&#8217;t think so on cakePHP</li>
</ul>
<p>There is a several which i think difference from both, and i need your suggestion, input or addition to complete this article. And please correct if on above is wrong.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=10&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2007/02/22/cakephp-vs-symfony-hmm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Multi action on drop down</title>
		<link>http://gunturris.wordpress.com/2006/09/08/multi-action-on-drop-down/</link>
		<comments>http://gunturris.wordpress.com/2006/09/08/multi-action-on-drop-down/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 06:55:17 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Dynamic Web Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2006/09/08/multi-action-on-drop-down/</guid>
		<description><![CDATA[Moreless 2 days i&#8217;m not writing here. Recently i&#8217;m very busy&#8230; You know why..? NO, I&#8217;m not a workaholic&#8230;:D Anyway, i want to write about javascript. Why&#8230;? It&#8217;s about manage &#8220;multi action on drop down&#8221; Have you ever think, How to create a form which it without submit button, but only use drop down menu, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=8&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Moreless 2 days i&#8217;m not writing here.<br />
Recently i&#8217;m very busy&#8230;<br />
You know why..?  NO, I&#8217;m not a workaholic&#8230;:D</p>
<p>Anyway,  i want to write about javascript.<br />
Why&#8230;? It&#8217;s about manage &#8220;multi action on drop down&#8221;<br />
Have you ever think, How to create a form which it without submit button,<br />
but only use drop down menu, where on list contain action by each list.</p>
<p>Ok, Think that we should edit or delete option.<br />
O ya, On this</p>
<pre>
&lt;?php   //action.php//Better if you control referer and else that you thing it a security issue

$action = isset($_POST['action']) : $_POST['action'] ? 0 ;

if($action == 1 ){

//Delete action here

} elseif ( $action ==2 ){

//Edit action here

} else {

//default

}

?&gt;</pre>
<p>And HTML page is like this</p>
<pre>
&lt;html&gt;

&lt;head&gt;

&lt;!– Everything about HTML head //–&gt;&lt;script language=”Javascript”&gt;

&lt;!–

function goAction(n){

var f = document.frm1;
  f.id.value = n;
  f.submit();

}

//–&gt;

&lt;/script&gt;

&lt;/head&gt;
&lt;body&gt;

&lt;form method=”post” name=”frm1″ action=”action.php”&gt;&lt;input type=”hidden” name=”id”&gt;

&lt;table width=”100%”&gt;

   &lt;tr bgcolor=”#CCCCCC”&gt;
      &lt;td&gt;Computer&lt;/td&gt;
      &lt;td&gt;$US 340&lt;/td&gt;
      &lt;td&gt;
         &lt;select name=”action” onchange=”goAction(234)”&gt;
         &lt;option value=”0"&gt;Action&lt;/option&gt;
         &lt;option value=”1"&gt;Delete&lt;/option&gt;
         &lt;option value=”2"&gt;Edit&lt;/option&gt;
         &lt;/select&gt;
     &lt;/td&gt;
   &lt;/tr&gt;

    &lt;tr bgcolor=”#CDCDCD”&gt;
      &lt;td&gt;Rack Server&lt;/td&gt;
      &lt;td&gt;$US 1422&lt;/td&gt;
      &lt;td&gt;
         &lt;select name=”action” onchange=”goAction(234)”&gt;
         &lt;option value=”0"&gt;Action&lt;/option&gt;
         &lt;option value=”1"&gt;Delete&lt;/option&gt;
         &lt;option value=”2"&gt;Edit&lt;/option&gt;
         &lt;/select&gt;
     &lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;

&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Any other idea?&#8230;<br />
I &#8216;m waiting <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=8&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/08/multi-action-on-drop-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Any minithesis to all my Friends</title>
		<link>http://gunturris.wordpress.com/2006/09/05/any-minithesis-to-all-my-friends/</link>
		<comments>http://gunturris.wordpress.com/2006/09/05/any-minithesis-to-all-my-friends/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 08:01:08 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Dynamic Web Development]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2006/09/05/any-minithesis-to-all-my-friends/</guid>
		<description><![CDATA[Fiewwh&#8230;. Many days ago, my friend who studing in a university which concern in Computer and Technology in Yogyakarta ask me, &#8220;Hi gun, what is good theme for my thesis&#8221;. Aha&#8230; My friend think that i can answer his question, of course,&#8230;. No i cannot&#8230; Btw, after thinking about his question i&#8217;m searching any pages [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=6&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fiewwh&#8230;.</p>
<p>Many days ago, my friend who studing in a university which concern in Computer and Technology in <a href="http://en.wikipedia.org/wiki/Yogyakarta" title="More about Yogyakarta" target="_blank">Yogyakarta</a> ask me, &#8220;Hi gun, what is good theme for my thesis&#8221;.</p>
<p>Aha&#8230;</p>
<p>My friend think that  i can  answer his question,  of course,&#8230;. No  i cannot&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Btw, after thinking about his question i&#8217;m searching any pages which content any technology research, and every page always prepare and present about article that i don&#8217;t understand. Deply, very very don&#8217;t understand <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ( How stupid i am )</p>
<p>Thinking again, i&#8217;m only know about PHP ( look at here , i&#8217;m very stupid, aren&#8217;t me? ).<br />
But, i remembered that PHP can do everything with your PC nad network, so i try to investigate it, and what i think came true. I found many themes that perhaps good for him.</p>
<p>And here are the themes:</p>
<ol>
<li><i><span>Mengelola file kompresi pada website</span></i> (Compress file management on website)</li>
<li><i><span>Mengelola database master dan slave serta pengaruhnya terhadap kinerja website dengan PHP dan </span><span>API </span></i><span><i>MySQLi </i>.</span> ( Master and slave database management and effect on website performance use PHP and MySQLi API )</li>
<li><i><span>Pengaruh mirror terhadap pelayanan XML website.</span></i> ( Mirror effect towards XML website serving )</li>
</ol>
<p>OK, now only three themes for your minithesis, I will update any idea soon.<br />
Do you interest ? ( I hope no ) if yes just write in comment. Hehehe&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=6&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/05/any-minithesis-to-all-my-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Between &#8220;Switch else PHP&#8221; and &#8220;Choose otherwise XSLT&#8221;</title>
		<link>http://gunturris.wordpress.com/2006/09/05/between-switch-else-php-and-choose-otherwise-xslt/</link>
		<comments>http://gunturris.wordpress.com/2006/09/05/between-switch-else-php-and-choose-otherwise-xslt/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 02:11:29 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Dynamic Web Development]]></category>

		<guid isPermaLink="false">http://gunturris.wordpress.com/2006/09/05/between-switch-else-php-and-choose-otherwise-xslt/</guid>
		<description><![CDATA[Hi, Still know this switch control on PHP programming? switch($var){ case $var="" : PHP statement ; break; case $var="" : PHP statement ; break; default : other PHP statement ; break; } Let&#8217;s equal it with XSLTransformer &#60;XSLT:CHOOSE&#62; Check it out.! &#60;!-- Estimate that you are in a XML tag data --&#62; &#60;xsl:choose &#62; &#60;xsl:when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=5&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi, Still know this switch control on PHP programming?<br />
<code>switch($var){<br />
case $var="" : PHP statement ; break;<br />
case $var="" : PHP statement  ; break;<br />
<strong> default</strong> : other PHP statement  ; break;<br />
}</code><br />
Let&#8217;s equal it with XSLTransformer &lt;XSLT:CHOOSE&gt;<br />
Check it out.!<br />
<code>&lt;!-- Estimate that you are in a XML tag data --&gt;<br />
&lt;xsl:choose &gt;<br />
&lt;xsl:when test = "xml:value" &gt;<br />
XHTML statement<br />
&lt;/xsl:when&gt;<br />
&lt;xsl:when test = "xml:value" &gt;<br />
XHTML statement<br />
&lt;/xsl:when&gt;<br />
<strong>&lt;xsl:otherwise &gt;</strong><br />
Other XHTML statement<br />
<strong>&lt;/xsl:otherwise&gt;</strong><br />
&lt;/xsl:choose&gt;</code><br />
Huehuehue&#8230;, Can you find the same thing between them..?<br />
Actually,  it&#8217;s not  too hard to find the same thing, especially  for a good programmer.</p>
<p>Yea, You&#8217;re right, the same thing what i mean, is structure, cos&#8217; these programms use logicaly control by event on one statement which give another statement. ( do you what i mean..? ) I hope&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
So, what are diferent if we use &lt;xsl:if&gt; ..?<br />
Hahaha, I thing you are better than me to answered this.<br />
Please tell me.</p>
<p>O ya&#8230; what i have been written may be wrong, please correct me too, cos i&#8217;m in learn about that.. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=5&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/05/between-switch-else-php-and-choose-otherwise-xslt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy money to &#8220;community&#8221; who lives near forest which burned</title>
		<link>http://gunturris.wordpress.com/2006/09/04/easy-money-to-community-who-lives-near-forest-which-burned/</link>
		<comments>http://gunturris.wordpress.com/2006/09/04/easy-money-to-community-who-lives-near-forest-which-burned/#comments</comments>
		<pubDate>Mon, 04 Sep 2006 03:41:03 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Forestry]]></category>

		<guid isPermaLink="false">https://gunturris.wordpress.com/2006/09/04/easy-money-to-community-who-lives-near-forest-which-burned/</guid>
		<description><![CDATA[Today, i was came in office early, hehehe&#8230; And read a news from Environmental Ministry that abstract of Forest Fire policy by their institutions. After looks and read it. There is a new sentences where very interesting for me. The line what i mean is &#8220;Kelompok masyarakat peduli api kemudian diberikan insentif berupa dana bergulir [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=4&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, i was came in office early, hehehe&#8230;<br />
And read a news from <a href="http://www.menlh.go.id/popup.php?cat=17&amp;id=1973" title="Environmental Ministy of Indonesia" target="_blank">Environmental Ministry</a> that  abstract of Forest Fire policy by their institutions. After  looks  and read it. There is a new sentences where very interesting for me. The line what i mean is &#8220;<i>Kelompok masyarakat peduli api kemudian diberikan insentif berupa dana bergulir apabila melakukan pembukaan lahan tanpa bakar.</i>&#8221;  ( Community group that care about fire will be gave insentive as roll on fund if they open land without burning )<br />
Do you know what is in my head..??<br />
Hehehe, yup, you right bro.<br />
My return question is, who will give that fund..? How much is it..? How is procedure..?<br />
Which community..?<br />
OK, I think it will be a new problem for next..?</p>
<p>Btw, I really apreciate to all people who care about Forest fire. Do you know why..?<br />
&#8220;<b>Cos we have</b><b> only</b><b> one earth</b>&#8220;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=4&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/04/easy-money-to-community-who-lives-near-forest-which-burned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Government, Education Instutitions and Tree Farmers</title>
		<link>http://gunturris.wordpress.com/2006/09/01/government-education-instutitions-and-tree-farmers/</link>
		<comments>http://gunturris.wordpress.com/2006/09/01/government-education-instutitions-and-tree-farmers/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 07:50:19 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Forestry]]></category>

		<guid isPermaLink="false">https://gunturris.wordpress.com/2006/09/01/government-education-instutitions-and-tree-farmers/</guid>
		<description><![CDATA[Well, i have been read email this affternoon, and i found an email from my university MILIST, which that email was critism an artikel about &#8220;Gerhan&#8221;. Gerhan is a forest development program what method based by community based forest management. How is it works..? ( OK you know it know ). Simple, thinking that you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=3&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, i have been read email this affternoon, and i found an email from my university MILIST, which that email was critism an artikel about &#8220;Gerhan&#8221;.</p>
<blockquote><p>Gerhan is a forest development program what method based by community based forest management. How is it works..? ( OK you know it know <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>Simple, thinking that you are a farmer where you live near a forest. Government education institution and &#8220;tree farmer&#8221; (who we call it Pesanggem) will works &#8220;together&#8221; to developt an evelasting forest development.</p></blockquote>
<p>Moreless they will has different responsibility. And they looks on a seriously conversation<br />
<b>Government </b> said &#8220;Let&#8217;s develop everlasting forest and  keep use community forest management, please send me a proposal complete include technicaly data  &#8220;;<br />
<b>Education institution </b>answered &#8220;OK sir, we will do everything you need, just keep this project to my institution <strike>only</strike>, we will do any research, socialiszation, train the farmer and give technical data for you , but we don&#8217;t have money, so could you help me?&#8221;<br />
<b>Government </b> said &#8220;OK we will support any material and fund, but report it as good as we <i>serve</i> you, ok &#8220;;<br />
<b>Farmers</b> said &#8220;Hi sir, what should i do? and what should I get ? &#8220;;<br />
<b>Education institusion</b> answered again &#8220;Hohoho&#8230; You <b>should</b> get much, job, money, more safe life and much more. You will plant, care, and harvest many trees &#8220;;<br />
<b>Farmers</b> said &#8220;wow&#8230; that&#8217;s great&#8230; So, what will you get..?&#8221;;<br />
<b>Education institution </b>and <b>Government </b>answered &#8220;No, we don&#8217;t need anything from you and your lands, we need your agreement only, that&#8217;s all&#8221;;<br />
<b>Farmers</b> said &#8220;Really&#8230; oh thank you very much sir&#8230;&#8221;;<br />
<b>Education institution </b>and <b>Government </b>answered &#8220;You&#8217;re welcome&#8221;;</p>
<p><b>Me</b> <font size="3">speaking by myself</font> **How poor farmers are**&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=3&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/01/government-education-instutitions-and-tree-farmers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
		<item>
		<title>Using CakePHP &#8230; nyam.. nyam&#8230; nyam&#8230;.</title>
		<link>http://gunturris.wordpress.com/2006/09/01/hello-world/</link>
		<comments>http://gunturris.wordpress.com/2006/09/01/hello-world/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 01:42:26 +0000</pubDate>
		<dc:creator>gunturris</dc:creator>
				<category><![CDATA[Dynamic Web Development]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Do you enjoyed developt a web using PHP + API Database only..? If no, i suggest you to go with template engine. Like smarty, tiny but strong , cakePHP or else, Now i&#8217;ll tell you about cake PHP, What the f*** is it..?? hehehehe&#8230; Cake PHP (sounds like cake which good to taste it ) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=1&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Do you enjoyed developt a web using PHP + API Database only..? If no, i suggest you to go with template engine. Like <a href="http://smarty.php.net/" title="Go To Smarty Template" target="_blank">smarty</a>, <a href="http://www.tinybutstrong.com/" title="Go to TBS Website" target="_blank">tiny but strong</a> , <a href="http://www.cakephp.org/" title="Go to cake PHP website" target="_blank">cakePHP</a> or else, Now i&#8217;ll tell you about cake PHP, What the f*** is it..?? hehehehe&#8230;</p>
<p>Cake PHP (sounds like cake which good to taste it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ) , is an alternative template engine for you who knows how PHP script does&#8230; perhaps!..perhaps..!perhaps..!<br />
Actualy i don&#8217;t know it very good..:D ..Sorry&#8230;..!!! SO just look and feel by your self, open it on <a href="http://manual.cakephp.org/" target="_blank" title="Manual cakePHP">Manual</a><br />
But &#8230;, I have tested it, and it&#8217;s cool bro&#8230;<br />
O ya&#8230; It run on PHP 5</p>
<p>cos you will ussualy using this</p>
<p><span class="kw2"><font face="courien-new">class Y extends X</font></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gunturris.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gunturris.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunturris.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunturris.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunturris.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunturris.wordpress.com&amp;blog=389569&amp;post=1&amp;subd=gunturris&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunturris.wordpress.com/2006/09/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2291398b8a451d93b8669210f271bcb4?s=96&#38;d=identicon" medium="image">
			<media:title type="html">gunturris</media:title>
		</media:content>
	</item>
	</channel>
</rss>
