<?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"
	>

<channel>
	<title>Bambang Scrap's Code &#187; PHP Excel</title>
	<atom:link href="http://bambangriadi.com/br/category/php/php-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://bambangriadi.com/br</link>
	<description>Mengumpulan Sesuatu Yang Berserakan</description>
	<pubDate>Tue, 01 Jun 2010 02:06:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Membuat Excel dengan Format XML</title>
		<link>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-format-xml/</link>
		<comments>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-format-xml/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 04:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP Excel]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.bambangriadi.com/br/?p=19</guid>
		<description><![CDATA[Kali ini dengan format XML nya, kelebihannya bisa ditampilkan di web browser, tinggal mengganti ekstensinya dengan .html
kelemahannya codingnya agak sulit, dan fungsi asli excelnya tidak tercover semuanya, misal untuk membuat grafik, dsb
Quick Code

&#60;startcode&#62;
&#60; ?php
header(&#34;Cache-Control: no-cache, no-store, must-revalidate&#34;);
header(&#34;Content-Type: application/vnd.ms-excel&#34;);
header(&#34;Content-Disposition: attachment; filename=namaFile.xls&#34;);
//isi file excel (pakai xml)
echo &#039;
&#60;html xmlns:o=&#34;urn:schemas-microsoft-com:office:office&#34;
xmlns:x=&#34;urn:schemas-microsoft-com:office:excel&#34;
xmlns=&#34;http://www.w3.org/TR/REC-html40&#34;&#62;
&#160;
&#60;head&#62;
&#60;meta http-equiv=Content-Type content=&#34;text/html; charset=us-ascii&#34;&#62;
&#60;/meta&#62;&#60;meta name=ProgId content=Excel.Sheet&#62;
&#60;/meta&#62;&#60;meta name=Generator content=&#34;Microsoft Excel 11&#34;&#62;
&#60;link [...]]]></description>
			<content:encoded><![CDATA[<p>Kali ini dengan format XML nya, kelebihannya bisa ditampilkan di web browser, tinggal mengganti ekstensinya dengan .html<br />
kelemahannya codingnya agak sulit, dan fungsi asli excelnya tidak tercover semuanya, misal untuk membuat grafik, dsb</p>
<p><a class="quickcode" title="Code" href="javascript:toggleLayer('quickcode191');">Quick Code</a></p>
<div id="quickcode191" class="quickcode"><code><br />
&lt;startcode&gt;<br />
&lt; ?php<br />
header(&quot;Cache-Control: no-cache, no-store, must-revalidate&quot;);<br />
header(&quot;Content-Type: application/vnd.ms-excel&quot;);<br />
header(&quot;Content-Disposition: attachment; filename=namaFile.xls&quot;);</p>
<p>//isi file excel (pakai xml)<br />
echo &#039;<br />
&lt;html xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot;<br />
xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot;<br />
xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;<br />
&nbsp;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;<br />
&lt;/meta&gt;&lt;meta name=ProgId content=Excel.Sheet&gt;<br />
&lt;/meta&gt;&lt;meta name=Generator content=&quot;Microsoft Excel 11&quot;&gt;<br />
&lt;link rel=File-List href=&quot;data.xls_files/filelist.xml&quot;&gt;<br />
&lt;/link&gt;&lt;link rel=Edit-Time-Data href=&quot;data.xls_files/editdata.mso&quot;&gt;<br />
&lt;/link&gt;&lt;link rel=OLE-Object-Data href=&quot;data.xls_files/oledata.mso&quot;&gt;<br />
&lt;!&#45;-[if gte mso 9]&gt;&lt;xml&gt;<br />
 &lt;o :DocumentProperties&gt;<br />
&nbsp;&nbsp;&lt;/o&gt;&lt;o :LastAuthor&gt;bambangriadi&lt;/o&gt;<br />
&nbsp;&nbsp;&lt;o :Created&gt;2008-06-13T04:50:40Z&lt;/o&gt;<br />
&nbsp;&nbsp;&lt;o :LastSaved&gt;2008-06-13T04:50:40Z&lt;/o&gt;<br />
&nbsp;&nbsp;&lt;o :Version&gt;11.5606&lt;/o&gt;</p>
<p>&lt;/xml&gt;&lt; ![endif]&#45;-&gt;<br />
&lt;style&gt;<br />
&lt;!&#45;-table<br />
&nbsp;&nbsp;{mso-displayed-decimal-separator:&quot;\.&quot;;<br />
&nbsp;&nbsp;mso-displayed-thousand-separator:&quot;\,&quot;;}<br />
@page<br />
&nbsp;&nbsp;{margin:1.0in .75in 1.0in .75in;<br />
&nbsp;&nbsp;mso-header-margin:.5in;<br />
&nbsp;&nbsp;mso-footer-margin:.5in;}<br />
tr<br />
&nbsp;&nbsp;{mso-height-source:auto;}<br />
col<br />
&nbsp;&nbsp;{mso-width-source:auto;}<br />
br<br />
&nbsp;&nbsp;{mso-data-placement:same-cell;}<br />
.style0<br />
&nbsp;&nbsp;{mso-number-format:General;<br />
&nbsp;&nbsp;text-align:general;<br />
&nbsp;&nbsp;vertical-align:bottom;<br />
&nbsp;&nbsp;white-space:nowrap;<br />
&nbsp;&nbsp;mso-rotate:0;<br />
&nbsp;&nbsp;mso-background-source:auto;<br />
&nbsp;&nbsp;mso-pattern:auto;<br />
&nbsp;&nbsp;color:windowtext;<br />
&nbsp;&nbsp;font-size:10.0pt;<br />
&nbsp;&nbsp;font-weight:400;<br />
&nbsp;&nbsp;font-style:normal;<br />
&nbsp;&nbsp;text-decoration:none;<br />
&nbsp;&nbsp;font-family:Arial;<br />
&nbsp;&nbsp;mso-generic-font-family:auto;<br />
&nbsp;&nbsp;mso-font-charset:0;<br />
&nbsp;&nbsp;border:none;<br />
&nbsp;&nbsp;mso-protection:locked visible;<br />
&nbsp;&nbsp;mso-style-name:Normal;<br />
&nbsp;&nbsp;mso-style-id:0;}<br />
td<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;padding-top:1px;<br />
&nbsp;&nbsp;padding-right:1px;<br />
&nbsp;&nbsp;padding-left:1px;<br />
&nbsp;&nbsp;mso-ignore:padding;<br />
&nbsp;&nbsp;color:windowtext;<br />
&nbsp;&nbsp;font-size:10.0pt;<br />
&nbsp;&nbsp;font-weight:400;<br />
&nbsp;&nbsp;font-style:normal;<br />
&nbsp;&nbsp;text-decoration:none;<br />
&nbsp;&nbsp;font-family:Arial;<br />
&nbsp;&nbsp;mso-generic-font-family:auto;<br />
&nbsp;&nbsp;mso-font-charset:0;<br />
&nbsp;&nbsp;mso-number-format:General;<br />
&nbsp;&nbsp;text-align:general;<br />
&nbsp;&nbsp;vertical-align:bottom;<br />
&nbsp;&nbsp;border:none;<br />
&nbsp;&nbsp;mso-background-source:auto;<br />
&nbsp;&nbsp;mso-pattern:auto;<br />
&nbsp;&nbsp;mso-protection:locked visible;<br />
&nbsp;&nbsp;white-space:nowrap;<br />
&nbsp;&nbsp;mso-rotate:0;}<br />
.xl24<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;color:white;<br />
&nbsp;&nbsp;text-align:center;<br />
&nbsp;&nbsp;border:.5pt solid black;<br />
&nbsp;&nbsp;background:#666699;<br />
&nbsp;&nbsp;mso-pattern:auto none;<br />
&nbsp;&nbsp;white-space:normal;}<br />
.xl25<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;color:white;<br />
&nbsp;&nbsp;text-align:center;<br />
&nbsp;&nbsp;border-top:.5pt solid black;<br />
&nbsp;&nbsp;border-right:.5pt solid black;<br />
&nbsp;&nbsp;border-bottom:.5pt solid black;<br />
&nbsp;&nbsp;border-left:none;<br />
&nbsp;&nbsp;background:#666699;<br />
&nbsp;&nbsp;mso-pattern:auto none;<br />
&nbsp;&nbsp;white-space:normal;}<br />
.xl26<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;border-top:none;<br />
&nbsp;&nbsp;border-right:.5pt solid black;<br />
&nbsp;&nbsp;border-bottom:.5pt solid black;<br />
&nbsp;&nbsp;border-left:.5pt solid black;<br />
&nbsp;&nbsp;background:white;<br />
&nbsp;&nbsp;mso-pattern:auto none;<br />
&nbsp;&nbsp;white-space:normal;}<br />
.xl27<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;border-top:none;<br />
&nbsp;&nbsp;border-right:.5pt solid black;<br />
&nbsp;&nbsp;border-bottom:.5pt solid black;<br />
&nbsp;&nbsp;border-left:none;<br />
&nbsp;&nbsp;background:white;<br />
&nbsp;&nbsp;mso-pattern:auto none;<br />
&nbsp;&nbsp;white-space:normal;}<br />
.xl28<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;font-size:12.0pt;<br />
&nbsp;&nbsp;font-weight:700;<br />
&nbsp;&nbsp;text-align:center;<br />
&nbsp;&nbsp;white-space:normal;}<br />
.xl29<br />
&nbsp;&nbsp;{mso-style-parent:style0;<br />
&nbsp;&nbsp;border-top:none;<br />
&nbsp;&nbsp;border-right:none;<br />
&nbsp;&nbsp;border-bottom:.5pt solid black;<br />
&nbsp;&nbsp;border-left:none;<br />
&nbsp;&nbsp;white-space:normal;}<br />
&#45;-&gt;<br />
&lt;/style&gt;<br />
&lt;!&#45;-[if gte mso 9]&gt;&lt;xml&gt;<br />
 &lt;x :ExcelWorkbook&gt;<br />
&nbsp;&nbsp;&lt;/x&gt;&lt;x :ExcelWorksheets&gt;<br />
&nbsp;&nbsp; &lt;/x&gt;&lt;x :ExcelWorksheet&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/x&gt;&lt;x :Name&gt;average_01-3-2008To27-3-2008&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;x :WorksheetOptions&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :Selected/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :DoNotDisplayGridlines/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/x&gt;&lt;x :Panes&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/x&gt;&lt;x :Pane&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/x&gt;&lt;x :Number&gt;3&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :ActiveRow&gt;25&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :ActiveCol&gt;11&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; <br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :ProtectContents&gt;False&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :ProtectObjects&gt;False&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;x :ProtectScenarios&gt;False&lt;/x&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp; <br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;&lt;x :WindowHeight&gt;9900&lt;/x&gt;<br />
&nbsp;&nbsp;&lt;x :WindowWidth&gt;19005&lt;/x&gt;<br />
&nbsp;&nbsp;&lt;x :WindowTopX&gt;120&lt;/x&gt;<br />
&nbsp;&nbsp;&lt;x :WindowTopY&gt;30&lt;/x&gt;<br />
&nbsp;&nbsp;&lt;x :ProtectStructure&gt;False&lt;/x&gt;<br />
&nbsp;&nbsp;&lt;x :ProtectWindows&gt;False&lt;/x&gt;</p>
<p>&lt;/xml&gt;&lt; ![endif]&#45;-&gt;<br />
&lt;/link&gt;&lt;/meta&gt;&lt;/head&gt;<br />
&nbsp;<br />
&lt;body link=blue vlink=purple&gt;<br />
&nbsp;<br />
&lt;table x:str border=0 cellpadding=0 cellspacing=0 width=380 style=&quot;border-collapse:<br />
 collapse;table-layout:fixed;width:285pt&quot;&gt;<br />
 &lt;col width=55 style=&quot;mso-width-source:userset;mso-width-alt:2011;width:41pt&quot;&gt;<br />
 &lt;/col&gt;&lt;col width=230 style=&quot;mso-width-source:userset;mso-width-alt:8411;width:173pt&quot;&gt;<br />
 &lt;/col&gt;&lt;col width=43 style=&quot;mso-width-source:userset;mso-width-alt:1572;width:32pt&quot;&gt;<br />
 &lt;/col&gt;&lt;col width=52 style=&quot;mso-width-source:userset;mso-width-alt:1901;width:39pt&quot;&gt;<br />
 &lt;tr height=21 style=&quot;mso-height-source:userset;height:15.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td colspan=4 height=21 class=xl28 width=380 style=&quot;height:15.75pt;<br />
&nbsp;&nbsp;width:285pt&quot;&gt;DATA PEGAWAI&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=21 style=&quot;mso-height-source:userset;height:15.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td colspan=4 height=21 class=xl28 width=380 style=&quot;height:15.75pt;<br />
&nbsp;&nbsp;width:285pt&quot;&gt;PT METRO KU&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=17 style=&quot;height:12.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td colspan=4 height=17 class=xl29 width=380 style=&quot;height:12.75pt;<br />
&nbsp;&nbsp;width:285pt&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=17 style=&quot;height:12.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td height=17 class=xl24 width=55 style=&quot;height:12.75pt;border-top:none;<br />
&nbsp;&nbsp;width:41pt&quot;&gt;No&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl25 width=230 style=&quot;border-top:none;width:173pt&quot;&gt;Nama&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl25 width=43 style=&quot;border-top:none;width:32pt&quot;&gt;Umur&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl25 width=52 style=&quot;border-top:none;width:39pt&quot;&gt;Status&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=17 style=&quot;height:12.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td height=17 class=xl26 width=55 style=&quot;height:12.75pt;width:41pt&quot;&gt;&amp;nbsp;1&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=230 style=&quot;width:173pt&quot;&gt;Ruadi&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 align=right width=43 style=&quot;width:32pt&quot; x:num&gt;23&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=52 style=&quot;width:39pt&quot;&gt;L&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=17 style=&quot;height:12.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td height=17 class=xl26 width=55 style=&quot;height:12.75pt;width:41pt&quot;&gt;&amp;nbsp;2&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=230 style=&quot;width:173pt&quot;&gt;Pak Min&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 align=right width=43 style=&quot;width:32pt&quot; x:num&gt;14&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=52 style=&quot;width:39pt&quot;&gt;L&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt;tr height=17 style=&quot;height:12.75pt&quot;&gt;<br />
&nbsp;&nbsp;&lt;td height=17 class=xl26 width=55 style=&quot;height:12.75pt;width:41pt&quot;&gt;&amp;nbsp;3&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=230 style=&quot;width:173pt&quot;&gt;Liana&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 align=right width=43 style=&quot;width:32pt&quot; x:num&gt;51&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td class=xl27 width=52 style=&quot;width:39pt&quot;&gt;P&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt; ![if supportMisalignedColumns]&gt;<br />
 &lt;tr height=0 style=&quot;display:none&quot;&gt;<br />
&nbsp;&nbsp;&lt;td width=55 style=&quot;width:41pt&quot;&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td width=230 style=&quot;width:173pt&quot;&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td width=43 style=&quot;width:32pt&quot;&gt;&lt;/td&gt;<br />
&nbsp;&nbsp;&lt;td width=52 style=&quot;width:39pt&quot;&gt;&lt;/td&gt;<br />
 &lt;/tr&gt;<br />
 &lt; ![endif]&gt;<br />
&lt;/col&gt;&lt;/table&gt;<br />
&nbsp;<br />
&lt;/body&gt;<br />
&#039;;<br />
?&gt;<br />
&lt;/startcode&gt;<br />
</code></div>
<p>simpan dengan nama data.xls<br />
untuk menampilkan ke web browser simpan dengan nama data.html<br />
gitu kan&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-format-xml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Membuat excel dengan PHP</title>
		<link>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-php/</link>
		<comments>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-php/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 03:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP Excel]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tambahkan tag baru]]></category>

		<guid isPermaLink="false">http://www.bambangriadi.com/br/?p=18</guid>
		<description><![CDATA[Untuk membuat file excel dengan PHP cukup sederhana,
tulis kode di bawah ini dan simpan dengan nama test.php :
Quick Code

&#60;codedisini&#62;
&#60; ?php
header(&#34;Cache-Control: no-cache, no-store, must-revalidate&#34;);
header(&#34;Content-Type: application/vnd.ms-excel&#34;);
header(&#34;Content-Disposition: attachment; filename=namaFile.xls&#34;);
&#160;
//isi file excel (pakai tabel)
echo &#34;&#60;table&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;tr&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Cols 1 dan Rows 1&#60;/td&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;/tr&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;tr&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Cols 2 dan Rows 2&#60;/td&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;/tr&#62;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#34;;
//bisa juga pakai Xml
?&#62;
&#60;/codedisini&#62;

Mudah sekali kan&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Untuk membuat file excel dengan PHP cukup sederhana,<br />
tulis kode di bawah ini dan simpan dengan nama test.php :<br />
<a class="quickcode" title="Code" href="javascript:toggleLayer('quickcode181');">Quick Code</a></p>
<div id="quickcode181" class="quickcode"><code><br />
&lt;codedisini&gt;<br />
&lt; ?php<br />
header(&quot;Cache-Control: no-cache, no-store, must-revalidate&quot;);<br />
header(&quot;Content-Type: application/vnd.ms-excel&quot;);<br />
header(&quot;Content-Disposition: attachment; filename=namaFile.xls&quot;);<br />
&nbsp;<br />
//isi file excel (pakai tabel)<br />
echo &quot;&lt;table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Cols 1 dan Rows 1&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;Cols 2 dan Rows 2&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;;<br />
//bisa juga pakai Xml<br />
?&gt;<br />
&lt;/codedisini&gt;<br />
</code></div>
<p>Mudah sekali kan&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bambangriadi.com/br/2008/06/membuat-excel-dengan-php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
