<?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>Tutorial Melayu &#187; gabung string</title>
	<atom:link href="http://www.tutorialmelayu.com/tag/gabung-string/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorialmelayu.com</link>
	<description></description>
	<lastBuildDate>Sun, 06 Nov 2011 12:38:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Concatenation : gabung string atau variable</title>
		<link>http://www.tutorialmelayu.com/web-programming/php/concatenation-gabung-string-atau-variable</link>
		<comments>http://www.tutorialmelayu.com/web-programming/php/concatenation-gabung-string-atau-variable#comments</comments>
		<pubDate>Sun, 08 Feb 2009 08:46:19 +0000</pubDate>
		<dc:creator>mdpai</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[belajar php melayu]]></category>
		<category><![CDATA[concatenation]]></category>
		<category><![CDATA[gabung string]]></category>
		<category><![CDATA[gabung variable]]></category>

		<guid isPermaLink="false">http://www.tutorialmelayu.com/?p=63</guid>
		<description><![CDATA[Concatenation digunakan untuk menggabungkan antara dua string, atau antara dua variable, atau antara string dan variable. Untuk concatenation ini, kita gunakan &#8220;.&#8221; Contoh concatenation antara 2 string; &#60;?php echo &#34;Nama saya &#34; . &#34;mdpai&#34;; ?&#62; Contoh concatenation antara 2 variable; &#60;?php $intro = &#34;nama saya &#34;; $nama = &#34;mdpai&#34;; echo $intro . $nama; ?&#62; Contoh [...]]]></description>
			<content:encoded><![CDATA[<p>Concatenation digunakan untuk menggabungkan antara dua string, atau antara dua variable, atau antara string dan variable. Untuk concatenation ini, kita gunakan &#8220;.&#8221;</p>
<p><span id="more-63"></span></p>
<p>Contoh concatenation antara 2 string;</p>

<div class="wp_codebox"><table><tr id="p635"><td class="code" id="p63code5"><pre class="php" style="font-family:monospace;"><span style="color: #dfc484; font-weight: bold;">&lt;?php</span>
   <span style="color: #e8ed97;">echo</span> <span style="color: #ff8400;">&quot;Nama saya &quot;</span> <span style="color: #eeeeee;">.</span> <span style="color: #ff8400;">&quot;mdpai&quot;</span><span style="color: #eeeeee;">;</span>
<span style="color: #eeeeee; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Contoh concatenation antara 2 variable;</p>

<div class="wp_codebox"><table><tr id="p636"><td class="code" id="p63code6"><pre class="php" style="font-family:monospace;"><span style="color: #dfc484; font-weight: bold;">&lt;?php</span>
   <span style="color: #dfc484;">$intro</span> <span style="color: #eeeeee;">=</span> <span style="color: #ff8400;">&quot;nama saya &quot;</span><span style="color: #eeeeee;">;</span>
   <span style="color: #dfc484;">$nama</span> <span style="color: #eeeeee;">=</span> <span style="color: #ff8400;">&quot;mdpai&quot;</span><span style="color: #eeeeee;">;</span>
   <span style="color: #e8ed97;">echo</span> <span style="color: #dfc484;">$intro</span> <span style="color: #eeeeee;">.</span> <span style="color: #dfc484;">$nama</span><span style="color: #eeeeee;">;</span>
<span style="color: #eeeeee; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Contoh concatenation antara string dan variable;</p>

<div class="wp_codebox"><table><tr id="p637"><td class="code" id="p63code7"><pre class="php" style="font-family:monospace;"><span style="color: #dfc484; font-weight: bold;">&lt;?php</span>
   <span style="color: #dfc484;">$nama</span> <span style="color: #eeeeee;">=</span> <span style="color: #ff8400;">&quot;mdpai&quot;</span><span style="color: #eeeeee;">;</span>
   <span style="color: #e8ed97;">echo</span> <span style="color: #ff8400;">&quot;Nama saya &quot;</span><span style="color: #eeeeee;">.</span> <span style="color: #dfc484;">$nama</span><span style="color: #eeeeee;">;</span>
<span style="color: #eeeeee; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Output untuk ketiga-tiga contoh ini adalah</p>

<div class="wp_codebox"><table><tr id="p638"><td class="code" id="p63code8"><pre class="html" style="font-family:monospace;">Nama saya mdpai</pre></td></tr></table></div>

<p><a href="http://www.tutorialmelayu.com/wp-content/uploads/2009/02/800px-php-n_logosvg.png"><img src="http://www.tutorialmelayu.com/wp-content/uploads/2009/02/800px-php-n_logosvg.png" alt="800px-php-n_logosvg" title="800px-php-n_logosvg" width="256" height="134" class="alignnone size-full wp-image-68" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialmelayu.com/web-programming/php/concatenation-gabung-string-atau-variable/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

