<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by </title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 24 Jun 2026 06:30:09 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>creating table from array with different value</title>
            <link>http://forum.lowyat.net/topic/4356054</link>
            <description>hi all,&lt;br /&gt;i want to create a table from an array based on a key value, but my problem is, not all data in my array has the same array key with same value.&lt;br /&gt;&lt;br /&gt;i have asked this same problem on StackOverflow&lt;br /&gt;&lt;a href='https://stackoverflow.com/questions/45007859/creating-table-from-array-with-different-length-and-value-php' target='_blank'&gt;StackOverflow Link&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;the last answer is doing what i need but it only find the first data. subsequent data is just ignored.&lt;br /&gt;&lt;br /&gt;this is my initial code, which is working but not ignoring missing data&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('2734a89ec912702e007481e2a49caafe')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;2734a89ec912702e007481e2a49caafe&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;    foreach&amp;#40;&amp;#036;graph as &amp;#036;grade =&amp;#62; &amp;#036;data &amp;#41;&lt;br /&gt;    {&lt;br /&gt;      echo &amp;#39;&amp;#60;strong&amp;#62;&amp;#39;.strtoupper&amp;#40;&amp;#036;grade&amp;#41;.&amp;#39;&amp;#60;/strong&amp;#62;&amp;#60;/br&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;Data Count&amp;#58; &amp;#60;b&amp;#62;&amp;#39;.count&amp;#40;&amp;#036;data&amp;#41;.&amp;#39;&amp;#60;/b&amp;#62;&amp;#39;;&lt;br /&gt;      //start the table for each grade&lt;br /&gt;      echo &amp;#39;&amp;#60;table border=1&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;&amp;#60;thead&amp;#62;&amp;#39;;&lt;br /&gt;        echo &amp;#39;&amp;#60;tr&amp;#62;&amp;#39;;&lt;br /&gt;        echo &amp;#39;&amp;#60;th&amp;#62;Monitor Label&amp;#60;/th&amp;#62;&amp;#39;;&lt;br /&gt;&lt;br /&gt;        for&amp;#40;&amp;#036;i=0;&amp;#036;i &amp;#60; count&amp;#40;&amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#41;;&amp;#036;i++&amp;#41;&lt;br /&gt;        {&lt;br /&gt;          echo &amp;#39;&amp;#60;th&amp;#62;&amp;#39;.&amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#91;&amp;#036;i&amp;#93;.&amp;#39;D&amp;#60;/th&amp;#62;&amp;#39;;&lt;br /&gt;        }&lt;br /&gt;        echo &amp;#39;&amp;#60;/tr&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;&amp;#60;/thead&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;&amp;#60;tbody&amp;#62;&amp;#39;;&lt;br /&gt;&lt;br /&gt;      for &amp;#40;&amp;#036;i=0;&amp;#036;i &amp;#60; count&amp;#40;&amp;#036;data&amp;#41;-1; &amp;#036;i++&amp;#41;&lt;br /&gt;      {&lt;br /&gt;        echo &amp;#39;&amp;#60;tr&amp;#62;&amp;#39;;&lt;br /&gt;        echo &amp;#39;&amp;#60;td&amp;#62;&amp;#39;.&amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;label&amp;#39;&amp;#93;.&amp;#39;&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;        foreach&amp;#40;&amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;data&amp;#39;&amp;#93; as &amp;#036;x&amp;#41;&lt;br /&gt;        {&lt;br /&gt;          echo &amp;#39;&amp;#60;td&amp;#62;&amp;#39;.&amp;#036;x&amp;#91;&amp;#39;y&amp;#39;&amp;#93;.&amp;#39;&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;        }&lt;br /&gt;        echo &amp;#39;&amp;#60;/tr&amp;#62;&amp;#39;;&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;      echo &amp;#39;&amp;#60;/tbody&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;&amp;#60;/table&amp;#62;&amp;#39;;&lt;br /&gt;    }&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;my initial code produce this table&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('7cae1d0e895de3ee081a603a81acbe80')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;7cae1d0e895de3ee081a603a81acbe80&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;+---------------+----------+-----------+-----------+-----------+-----------+-----+-----+&lt;br /&gt;&amp;#124; Monitor Label &amp;#124; &amp;nbsp; &amp;nbsp;1D &amp;nbsp; &amp;nbsp;&amp;#124; &amp;nbsp; &amp;nbsp;2D &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp;3D &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp;6D &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp;7D &amp;nbsp; &amp;nbsp; &amp;#124; 15D &amp;#124; 28D &amp;#124;&lt;br /&gt;+---------------+----------+-----------+-----------+-----------+-----------+-----+-----+&lt;br /&gt;&amp;#124; C81 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; 6.220000 &amp;#124; 10.220000 &amp;#124; 21.440000 &amp;#124; 30.780000 &amp;#124; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124;&lt;br /&gt;&amp;#124; C82 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; 8.000000 &amp;#124; 20.890000 &amp;#124; 30.670000 &amp;#124; 32.555000 &amp;#124; 51.110000 &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124;&lt;br /&gt;&amp;#124; C83 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; 7.110000 &amp;#124; 19.780000 &amp;#124; 23.560000 &amp;#124; 32.225000 &amp;#124; 38.890000 &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;#124;&lt;br /&gt;+---------------+----------+-----------+-----------+-----------+-----------+-----+-----+&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;this is the answer from SO which is working, but only on the first data it found. the rest is just ignored&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('53bfa2a12cb8ba690839e4c19ccb190d')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;53bfa2a12cb8ba690839e4c19ccb190d&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;     foreach&amp;#40;&amp;#036;graph as &amp;#036;grade =&amp;#62; &amp;#036;data &amp;#41;&lt;br /&gt;     {&lt;br /&gt;     echo &amp;#39;&amp;#60;strong&amp;#62;&amp;#39;.strtoupper&amp;#40;&amp;#036;grade&amp;#41;.&amp;#39;&amp;#60;/strong&amp;#62;&amp;#60;/br&amp;#62;&amp;#39;;&lt;br /&gt;     //start the table for each grade&lt;br /&gt;     echo &amp;#39;&amp;#60;table border=1&amp;#62;&amp;#39;;&lt;br /&gt;     echo &amp;#39;&amp;#60;thead&amp;#62;&amp;#39;;&lt;br /&gt;     echo &amp;#39;&amp;#60;tr&amp;#62;&amp;#39;;&lt;br /&gt;     echo &amp;#39;&amp;#60;th&amp;#62;Monitor Label&amp;#60;/th&amp;#62;&amp;#39;;&lt;br /&gt;&lt;br /&gt;     for&amp;#40;&amp;#036;i=0;&amp;#036;i &amp;#60; count&amp;#40;&amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#41;;&amp;#036;i++&amp;#41;&lt;br /&gt;     {&lt;br /&gt;        echo &amp;#39;&amp;#60;th&amp;#62;&amp;#39;.&amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#91;&amp;#036;i&amp;#93;.&amp;#39;D&amp;#60;/th&amp;#62;&amp;#39;;&lt;br /&gt;     }&lt;br /&gt;     echo &amp;#39;&amp;#60;/tr&amp;#62;&amp;#39;;&lt;br /&gt;     echo &amp;#39;&amp;#60;/thead&amp;#62;&amp;#39;;&lt;br /&gt;     echo &amp;#39;&amp;#60;tbody&amp;#62;&amp;#39;;&lt;br /&gt;&lt;br /&gt;     for &amp;#40;&amp;#036;i=0;&amp;#036;i &amp;#60; count&amp;#40;&amp;#036;data&amp;#41;-1; &amp;#036;i++&amp;#41;&lt;br /&gt;     {&lt;br /&gt;       echo &amp;#39;&amp;#60;tr&amp;#62;&amp;#39;;&lt;br /&gt;       echo &amp;#39;&amp;#60;td&amp;#62;&amp;#39;.&amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;label&amp;#39;&amp;#93;.&amp;#39;&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;       for &amp;#40;&amp;#036;y=0; &amp;#036;y &amp;#60; count&amp;#40;&amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#41;; &amp;#036;y++&amp;#41; {&lt;br /&gt;           if &amp;#40; isset&amp;#40;&amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;data&amp;#39;&amp;#93;&amp;#91;&amp;#036;y&amp;#93;&amp;#41; &amp;#41; {&lt;br /&gt;               if &amp;#40; &amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;data&amp;#39;&amp;#93;&amp;#91;&amp;#036;y&amp;#93;&amp;#91;&amp;#39;x&amp;#39;&amp;#93; == &amp;#036;data&amp;#91;&amp;#39;age&amp;#39;&amp;#93;&amp;#91;&amp;#036;i&amp;#93; &amp;#41; {&lt;br /&gt;                   echo &amp;#39;&amp;#60;td&amp;#62;&amp;#39;.&amp;#036;data&amp;#91;&amp;#036;i&amp;#93;&amp;#91;&amp;#39;data&amp;#39;&amp;#93;&amp;#91;&amp;#036;y&amp;#93;&amp;#91;&amp;#39;y&amp;#39;&amp;#93;.&amp;#39;&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;               } else {&lt;br /&gt;                   echo &amp;#39;&amp;#60;td&amp;#62;-&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;               }&lt;br /&gt;           } else {&lt;br /&gt;               echo &amp;#39;&amp;#60;td&amp;#62;-&amp;#60;/td&amp;#62;&amp;#39;;&lt;br /&gt;           }&lt;br /&gt;       }&lt;br /&gt;       echo &amp;#39;&amp;#60;/tr&amp;#62;&amp;#39;;&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;      echo &amp;#39;&amp;#60;/tbody&amp;#62;&amp;#39;;&lt;br /&gt;      echo &amp;#39;&amp;#60;/table&amp;#62;&amp;#39;;&lt;br /&gt;     }&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;above code produce this table&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('23d866252ce857ecb57d0d960704ced1')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;23d866252ce857ecb57d0d960704ced1&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;+---------------+----------+-----------+----+----+----+-----+-----+&lt;br /&gt;&amp;#124; Monitor Label &amp;#124; &amp;nbsp; &amp;nbsp;1D &amp;nbsp; &amp;nbsp;&amp;#124; &amp;nbsp; &amp;nbsp;2D &amp;nbsp; &amp;nbsp; &amp;#124; 3D &amp;#124; 6D &amp;#124; 7D &amp;#124; 15D &amp;#124; 28D &amp;#124;&lt;br /&gt;+---------------+----------+-----------+----+----+----+-----+-----+&lt;br /&gt;&amp;#124; C81 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; 6.220000 &amp;#124; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp; - &amp;#124; &amp;nbsp; - &amp;#124;&lt;br /&gt;&amp;#124; C82 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;- &amp;#124; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp; - &amp;#124; &amp;nbsp; - &amp;#124;&lt;br /&gt;&amp;#124; C83 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#124; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;- &amp;#124; 19.780000 &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp;- &amp;#124; &amp;nbsp; - &amp;#124; &amp;nbsp; - &amp;#124;&lt;br /&gt;+---------------+----------+-----------+----+----+----+-----+-----+&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;my serialized data is as follows&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('7eae0ad431adb3eaa54fea705c20d140')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;7eae0ad431adb3eaa54fea705c20d140&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;a&amp;#58;1&amp;#58;{s&amp;#58;3&amp;#58;&amp;#34;25p&amp;#34;;a&amp;#58;4&amp;#58;{i&amp;#58;0;a&amp;#58;4&amp;#58;{s&amp;#58;2&amp;#58;&amp;#34;id&amp;#34;;i&amp;#58;353;s&amp;#58;5&amp;#58;&amp;#34;label&amp;#34;;s&amp;#58;3&amp;#58;&amp;#34;C81&amp;#34;;s&amp;#58;7&amp;#58;&amp;#34;casting&amp;#34;;s&amp;#58;11&amp;#58;&amp;#34;21 Mar 2017&amp;#34;;s&amp;#58;4&amp;#58;&amp;#34;data&amp;#34;;a&amp;#58;4&amp;#58;{i&amp;#58;0;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;1;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;8&amp;#58;&amp;#34;6.220000&amp;#34;;}i&amp;#58;1;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;2;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;10.220000&amp;#34;;}i&amp;#58;2;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;7;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;21.440000&amp;#34;;}i&amp;#58;3;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;28;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;30.780000&amp;#34;;}}}i&amp;#58;1;a&amp;#58;4&amp;#58;{s&amp;#58;2&amp;#58;&amp;#34;id&amp;#34;;i&amp;#58;354;s&amp;#58;5&amp;#58;&amp;#34;label&amp;#34;;s&amp;#58;3&amp;#58;&amp;#34;C82&amp;#34;;s&amp;#58;7&amp;#58;&amp;#34;casting&amp;#34;;s&amp;#58;11&amp;#58;&amp;#34;21 Mar 2017&amp;#34;;s&amp;#58;4&amp;#58;&amp;#34;data&amp;#34;;a&amp;#58;5&amp;#58;{i&amp;#58;0;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;1;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;8&amp;#58;&amp;#34;8.000000&amp;#34;;}i&amp;#58;1;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;3;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;20.890000&amp;#34;;}i&amp;#58;2;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;6;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;30.670000&amp;#34;;}i&amp;#58;3;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;7;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;32.555000&amp;#34;;}i&amp;#58;4;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;28;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;51.110000&amp;#34;;}}}i&amp;#58;2;a&amp;#58;4&amp;#58;{s&amp;#58;2&amp;#58;&amp;#34;id&amp;#34;;i&amp;#58;355;s&amp;#58;5&amp;#58;&amp;#34;label&amp;#34;;s&amp;#58;3&amp;#58;&amp;#34;C83&amp;#34;;s&amp;#58;7&amp;#58;&amp;#34;casting&amp;#34;;s&amp;#58;11&amp;#58;&amp;#34;21 Mar 2017&amp;#34;;s&amp;#58;4&amp;#58;&amp;#34;data&amp;#34;;a&amp;#58;5&amp;#58;{i&amp;#58;0;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;1;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;8&amp;#58;&amp;#34;7.110000&amp;#34;;}i&amp;#58;1;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;3;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;19.780000&amp;#34;;}i&amp;#58;2;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;6;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;23.560000&amp;#34;;}i&amp;#58;3;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;7;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;32.225000&amp;#34;;}i&amp;#58;4;a&amp;#58;2&amp;#58;{s&amp;#58;1&amp;#58;&amp;#34;x&amp;#34;;i&amp;#58;15;s&amp;#58;1&amp;#58;&amp;#34;y&amp;#34;;s&amp;#58;9&amp;#58;&amp;#34;38.890000&amp;#34;;}}}s&amp;#58;3&amp;#58;&amp;#34;age&amp;#34;;a&amp;#58;7&amp;#58;{i&amp;#58;0;i&amp;#58;1;i&amp;#58;1;i&amp;#58;2;i&amp;#58;2;i&amp;#58;3;i&amp;#58;3;i&amp;#58;6;i&amp;#58;4;i&amp;#58;7;i&amp;#58;5;i&amp;#58;15;i&amp;#58;6;i&amp;#58;28;}}}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;the &amp;#39;&lt;b&gt;age&lt;/b&gt;&amp;#39; key is created based on the flatten and unique value of &amp;#39;&lt;b&gt;data[x]&amp;#39;&lt;/b&gt; &lt;br /&gt;please help me doing this table. i am stuck on this problem for 2 days now.  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;or if there is any alternative way which i can display the data?</description>
            <author>zimorok</author>
            <category>Codemasters</category>
            <pubDate>Wed, 12 Jul 2017 11:09:42 +0800</pubDate>
        </item>
        <item>
            <title>Signal repeater or booster</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Networks and Broadband</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>DiGi RM3/Weekly Unlimited Social Messaging</title>
            <link>http://forum.lowyat.net/topic/3477879</link>
            <description>Hi all, I found this plan on DiGi website. I am wondering how this plan works. &lt;br /&gt;&lt;br /&gt;I am not DiGi user but planning to move to DiGi because of this plan. How does the plan works? If I turn on mobile data, will it eat my credit if I try to surf the web through normal browser, not the opera mobile?&lt;br /&gt;&lt;br /&gt;It says social messaging, what social apps can we use? I cant really find much info about that. If using whatsapp, can we send image?&lt;br /&gt;&lt;br /&gt;Thanks in advance.</description>
            <author>zimorok</author>
            <category>Networks and Broadband</category>
            <pubDate>Thu, 22 Jan 2015 17:02:29 +0800</pubDate>
        </item>
        <item>
            <title>I Need a Seedbox tester</title>
            <link>http://forum.lowyat.net/topic/3416830</link>
            <description>Hi All,&lt;br /&gt;&lt;br /&gt;I am in the middle of creating a new seedbox. So I am inviting &lt;b&gt;6 lucky person&lt;/b&gt; to test my setup and share your experience&lt;br /&gt;&lt;br /&gt;The seedbox&lt;br /&gt;- 100GB space (soft limit only)&lt;br /&gt;- unlimited running torrent&lt;br /&gt;- unlimited bandwidth (Server connected on 1Gbps Network port)&lt;br /&gt;- HTTPS to torrent GUI&lt;br /&gt;- SFTP connection to download the torrent&lt;br /&gt;- Based on rtorrent+ruTorrent setup&lt;br /&gt;- Unlimited Download speed&lt;br /&gt;- 10mbps Upload speed (&lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;)&lt;br /&gt;- No remote monitoring support (i.e Transdroid)&lt;br /&gt;&lt;br /&gt;The seedbox is on the same network as my &lt;a href='https://premixlink.com' target='_blank'&gt;&lt;span style='color:blue'&gt;free public rapidleech&lt;/span&gt;&lt;/a&gt;. Feel free to use and see the download speed from other host.&lt;br /&gt;&lt;br /&gt;Tester may use the &lt;b&gt;seedbox for whole 1 week.&lt;/b&gt; Please send me any error and your experience with it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to apply for this?&lt;/b&gt;&lt;br /&gt;&lt;i&gt;anyone can apply, first come first serve. But I will still consider if you are eligible or not.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Btw, the 6 lucky user shall be 3 guy, 3 girl.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;To make it easy, Just convince me to let you be the Test user &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;**This post will be closed once the required user full or after 9PM today**&lt;br /&gt;&lt;br /&gt;[ Guy]&lt;br /&gt;1. mad093dean&lt;br /&gt;2. qwerty79&lt;br /&gt;3. akustuk&lt;br /&gt;&lt;br /&gt;[ Girl ]&lt;br /&gt;1.&lt;br /&gt;2.&lt;br /&gt;3.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='font-size:8pt;line-height:100%'&gt;is this even the right place to announce this? sorry mod.&lt;/span&gt;</description>
            <author>zimorok</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Thu, 20 Nov 2014 16:08:29 +0800</pubDate>
        </item>
        <item>
            <title>Torrent re-seeder please</title>
            <link>http://forum.lowyat.net/topic/3382743</link>
            <description>Hi all,&lt;br /&gt;Can I ask for torrent re-seed please?&lt;br /&gt;</description>
            <author>zimorok</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sat, 18 Oct 2014 22:21:13 +0800</pubDate>
        </item>
        <item>
            <title>ghost your blue sim card</title>
            <link>http://forum.lowyat.net/topic/3351633</link>
            <description>Hi all,&lt;br /&gt;just for today only, I can help you ghost your blue sim.&lt;br /&gt;&lt;br /&gt;[Requirement]&lt;br /&gt;for &lt;b&gt;XPAX24, X2, UOX, SOX, FRENZ&lt;/b&gt;&lt;br /&gt;-no internet subscription&lt;br /&gt;-4G sim&lt;br /&gt;-minimum credit of RM50&lt;br /&gt;&lt;br /&gt;for &lt;b&gt;C1M&lt;/b&gt;&lt;br /&gt;-montly subscription active&lt;br /&gt;-4G Sim&lt;br /&gt;-minimum credit of RM5.&lt;br /&gt;&lt;br /&gt;Its better if your sim never boosted before.&lt;br /&gt;re-ghost is possible, but not 100% certain.&lt;br /&gt;Do assume that you wont be able to use 4G network.&lt;br /&gt;&lt;br /&gt;price can Pm me(2 digit only) and the offer are &lt;b&gt;limited for 10 Sim only&lt;/b&gt;. It doesnt matter if you ghost 2 or 3 sim, once I ghost 10 sim, this offer will expire.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='font-size:8pt;line-height:100%'&gt;p/s mod: if this post seems inappropriate, delete this anytime. (sorry).&lt;/span&gt;</description>
            <author>zimorok</author>
            <category>Services Noticeboard</category>
            <pubDate>Wed, 17 Sep 2014 15:08:44 +0800</pubDate>
        </item>
        <item>
            <title>wordpress user, RESET YOUR EMAIL PASSWORD</title>
            <link>http://forum.lowyat.net/topic/3347794</link>
            <description>Hi all, if you are a wordpress user and using the same email password combination(which is bad) on any other website, do reset you password to a new and stronger one.&lt;br /&gt;[attachmentid=4131762]</description>
            <author>zimorok</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Sat, 13 Sep 2014 10:50:24 +0800</pubDate>
        </item>
        <item>
            <title>Reading material for PHP CSS Templating</title>
            <link>http://forum.lowyat.net/topic/3337727</link>
            <description>Hi all,&lt;br /&gt;I want to ask if you all know where I can get some good reading material to make CSS/HTML template to work with PHP. I know how the process works but my boss want it in written form. Like some documentation or something. &lt;br /&gt;&lt;br /&gt;How do explained to him in simple form the process behind wordpress template processing? lets just say, they have moderate knowledge of programming and used to rojak code where logic and presentation presented in the same page.&lt;br /&gt;&lt;br /&gt;thank you in advance.</description>
            <author>zimorok</author>
            <category>Codemasters</category>
            <pubDate>Tue, 02 Sep 2014 15:19:06 +0800</pubDate>
        </item>
        <item>
            <title>Signal repeater or booster</title>
            <link>http://forum.lowyat.net/topic/3334324</link>
            <description>Hi all, I dont if this topic has been discussed before or posted in the right place but I just want to know if it is legal for ur malaysian to use signal repeater for private use.&lt;br /&gt;&lt;br /&gt;if yes, anyone selling it here in Malaysia?. I need it for our office since the signal are very bad indoors.</description>
            <author>zimorok</author>
            <category>Networks and Broadband</category>
            <pubDate>Fri, 29 Aug 2014 09:13:28 +0800</pubDate>
        </item>
        <item>
            <title>BOLT 4G YAGI Antenna componen</title>
            <link>http://forum.lowyat.net/topic/3334104</link>
            <description>[YOUTUBE]http://www.youtube.com/watch?v=CPf_f47CTX4[/YOUTUBE]&lt;br /&gt;&lt;br /&gt;Like the video above, where can I buy those item here in Malaysia? anyone selling it here?&lt;br /&gt;&lt;br /&gt;hopefully the complete set with the pigtail, the YAGI Antenna and the cable. I need to modify my BOLT4G MiFi modem because the signal are very bad inside our office.</description>
            <author>zimorok</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Thu, 28 Aug 2014 22:16:25 +0800</pubDate>
        </item>
        <item>
            <title>Looking for house/room near tg langsat JB</title>
            <link>http://forum.lowyat.net/topic/3282802</link>
            <description>Hi LYN Member,&lt;br /&gt;I am looking for a house or room to rent at Tangjung Langsat, Pasir Gudang for a long term because I am moving there for a job I got there.&lt;br /&gt;&lt;br /&gt;As I am not so familiar with the area, anyone can suggest or have a house/room to rent? my budget are &lt;b&gt;RM200-400/month&lt;/b&gt;?&lt;br /&gt;&lt;br /&gt;If its a room, I prefer a separated room like those on shoplot so I can move freely without disturbing other people.&lt;br /&gt;&lt;br /&gt;Thanks in advanced&amp;#33;</description>
            <author>zimorok</author>
            <category>Property For Sale</category>
            <pubDate>Tue, 08 Jul 2014 13:03:28 +0800</pubDate>
        </item>
        <item>
            <title>Alternative energy Law in Malaysia</title>
            <link>http://forum.lowyat.net/topic/3168157</link>
            <description>Hi LYN Members,&lt;br /&gt;&lt;br /&gt;I have a few question regarding this Alternative Energy in Malaysia.&lt;br /&gt;&lt;br /&gt;Is there any law we should follow or we should take note when making an alternative energy for our home?&lt;br /&gt;&lt;br /&gt;I&amp;#39;m thinking of building a super small micro hydro for my home use but my house are already connected to the grid for so many years.&lt;br /&gt;Only a few days ago I stumble upon this &lt;a href='http://www.thediyworld.com/table-fan-generator.php' target='_blank'&gt;table fan as water turbine&lt;/a&gt; and started searching more on this topic.&lt;br /&gt;&lt;br /&gt;I am surprise, some people can live deep in the jungle with their own electricity. Like in Vietnam.&lt;br /&gt;&lt;br /&gt;As I keep researching, more and more people suggest to look into local law before making one like this.&lt;br /&gt;&lt;br /&gt;so, how about here in Malaysia?&lt;br /&gt;&lt;br /&gt;thanks in advance.&lt;br /&gt;&lt;br /&gt;</description>
            <author>zimorok</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 21 Mar 2014 12:36:38 +0800</pubDate>
        </item>
        <item>
            <title>TM Wifi Hotspot</title>
            <link>http://forum.lowyat.net/topic/3143064</link>
            <description>Hi LYN members,&lt;br /&gt;I can connect to TM Wifi Hotspot, but it is limited. I&amp;#39;ve read a thread somewhere here on LYN saying how to add a device, and did follow the step but I still got limited connection. No google, no facebook, no internet.&lt;br /&gt;&lt;br /&gt;When connected, I should be redirected to a Login page, but I didnt get it. I can login to KFC Hotspot without problem. Only the access point with TM Wifi.&lt;br /&gt;&lt;br /&gt;Can we manually authenticate ourself to TM Wifi, like, go to certain address and login there?</description>
            <author>zimorok</author>
            <category>Networks and Broadband</category>
            <pubDate>Tue, 25 Feb 2014 13:14:49 +0800</pubDate>
        </item>
        <item>
            <title>microsoft surface tablet</title>
            <link>http://forum.lowyat.net/topic/3139825</link>
            <description>Hi all,&lt;br /&gt;I just received this Microsoft Surface tablet from TM because I subscribed back to them during promotion.&lt;br /&gt;1mbps/RM68/month.&lt;br /&gt;&lt;br /&gt;Can somebody guide me how to use this effectively? Because I cannot play my movie, screen keep getting dark while watching yotube, and whats more frustating, I cannot install other browser. Im stuck with IE which is so slow when surfing.&lt;br /&gt;Any good tips for this?</description>
            <author>zimorok</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sat, 22 Feb 2014 10:59:27 +0800</pubDate>
        </item>
        <item>
            <title>Blank screen power lights on</title>
            <link>http://forum.lowyat.net/topic/3136669</link>
            <description>Hi LYN Sifu,&lt;br /&gt;My asus eee pc just suddenly wont boot up. Yesterday I turn it off normaly, and this morning I try to boot it, there is nothing on the screen.&lt;br /&gt;&lt;br /&gt;No sound too. When I pressed the power button, there is blue light but nothing on the screen. just blank.&lt;br /&gt;&lt;br /&gt;trying remove the battery, the same. Got blue light, nothing on screen.&lt;br /&gt;Tried holding power button for 1 minute, still the same.&lt;br /&gt;&lt;br /&gt;i even replace the RAM with a new one.&lt;br /&gt;&lt;br /&gt;Any idea what goes wrong with this netbook?&lt;br /&gt;thanks in advance.</description>
            <author>zimorok</author>
            <category>Technical Support</category>
            <pubDate>Wed, 19 Feb 2014 13:35:07 +0800</pubDate>
        </item>
        <item>
            <title>Google Doc viewer</title>
            <link>http://forum.lowyat.net/topic/3107592</link>
            <description>Hi all, &lt;br /&gt;For those of you who has experience with google docs, care to shine some light on this?&lt;br /&gt;&lt;br /&gt;we can view online document (PDF, power point,excel etc) using google docs viewer simple API.&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;https&amp;#58;//docs.google.com/viewer&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;embedded view&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;https&amp;#58;//docs.google.com/viewer?url=http%3A%2F%2Fresearch.google.com%2Farchive%2Fbigtable-osdi06.pdf&amp;amp;embedded=true&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;normal view&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;https&amp;#58;//docs.google.com/viewer?url=http%3A%2F%2Fresearch.google.com%2Farchive%2Fbigtable-osdi06.pdf&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;what you need is the hard-link to the document file. For a full list of supported file type, see &lt;a href='https://support.google.com/drive/answer/2423485?p=docs_viewer&amp;rd=1' target='_blank'&gt;https://support.google.com/drive/answer/242...ocs_viewer&amp;rd=1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;My question is, will google download the file to their server?&lt;br /&gt;&lt;br /&gt;this is in their TOS&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&amp;#34;You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Service. By submitting, posting or displaying the Content you give Google a worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through the Service for the sole purpose of enabling Google to provide you with the Service in accordance with Google&amp;#39;s privacy policy.&amp;#34;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>zimorok</author>
            <category>Codemasters</category>
            <pubDate>Tue, 21 Jan 2014 15:06:16 +0800</pubDate>
        </item>
        <item>
            <title>Cookie and T&amp;amp;C Policy</title>
            <link>http://forum.lowyat.net/topic/3106310</link>
            <description>Hi all webmasters,&lt;br /&gt;I want to ask if there any FREE-READY-TO-COPY cookie and terms and condition policy?&lt;br /&gt;&lt;br /&gt;or do I have to consult a legal firm to do this to me?&lt;br /&gt;&lt;br /&gt;why I need this?&lt;br /&gt;If you want to operate a website in Europe (I think worldwide), you must clearly state this in your website.&lt;br /&gt;&lt;br /&gt;Any sifu has experience with this?&lt;br /&gt;&lt;br /&gt;Thanks in advance&amp;#33; &lt;!--emo&amp;:thumbs:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/thumbup.gif' border='0' style='vertical-align:middle' alt='thumbup.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>zimorok</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Mon, 20 Jan 2014 14:15:35 +0800</pubDate>
        </item>
        <item>
            <title>[WTA]My rig build</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Hardware</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>[WTA]My rig build</title>
            <link>http://forum.lowyat.net/topic/3090526</link>
            <description>i&amp;#39;m trying to build a budget gaming PC. So far, this is what I thought is best for me.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://pcpartpicker.com/p/2wq28' target='_blank'&gt;PCPartPicker part list&lt;/a&gt; / &lt;a href='http://pcpartpicker.com/p/2wq28/by_merchant/' target='_blank'&gt;Price breakdown by merchant&lt;/a&gt; / &lt;a href='http://pcpartpicker.com/p/2wq28/benchmarks/' target='_blank'&gt;Benchmarks&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;CPU:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/amd-cpu-fd6300wmhkbox' target='_blank'&gt;AMD FX-6300 3.5GHz 6-Core Processor&lt;/a&gt;  (&amp;#036;109.99 @ Newegg) &lt;br /&gt;&lt;b&gt;Motherboard:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/gigabyte-motherboard-ga78lmtusb3' target='_blank'&gt;Gigabyte GA-78LMT-USB3 Micro ATX AM3+ Motherboard&lt;/a&gt;  (&amp;#036;49.99 @ Microcenter) &lt;br /&gt;&lt;b&gt;Memory:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/crucial-memory-ct102464ba1339' target='_blank'&gt;Crucial 8GB (1 x 8GB) DDR3-1333 Memory&lt;/a&gt;  (&amp;#036;59.99 @ Newegg) &lt;br /&gt;&lt;b&gt;Storage:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/western-digital-internal-hard-drive-wd5000aakx' target='_blank'&gt;Western Digital Caviar Blue 500GB 3.5&amp;quot; 7200RPM Internal Hard Drive&lt;/a&gt;  (&amp;#036;49.99 @ Newegg) &lt;br /&gt;&lt;b&gt;Video Card:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/sapphire-video-card-112001620g' target='_blank'&gt;Sapphire Radeon HD 7850 1GB Video Card&lt;/a&gt;  (&amp;#036;143.98 @ SuperBiiz) &lt;br /&gt;&lt;b&gt;Case:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/silverstone-case-sstsg02bfusb30' target='_blank'&gt;Silverstone SST-SG02B-F-USB3.0 (Black) MicroATX Desktop Case&lt;/a&gt;  (&amp;#036;62.98 @ Newegg) &lt;br /&gt;&lt;b&gt;Power Supply:&lt;/b&gt;  &lt;a href='http://pcpartpicker.com/part/corsair-power-supply-cx430' target='_blank'&gt;Corsair Builder 430W 80+ Bronze Certified ATX Power Supply&lt;/a&gt;  (&amp;#036;19.99 @ Microcenter) &lt;br /&gt;&lt;b&gt;Total:&lt;/b&gt; &amp;#036;496.91&lt;br /&gt;&lt;i&gt;(Prices include shipping, taxes, and discounts when available.)&lt;/i&gt;&lt;br /&gt;&lt;i&gt;(Generated by PCPartPicker 2014-01-05 23:47 EST-0500)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;can this play those latest game? Crysis 3, Hitman, Battlefield..&lt;br /&gt;&lt;br /&gt;Please sifu2, advice on this build. Thanks in advance.</description>
            <author>zimorok</author>
            <category>Hardware</category>
            <pubDate>Mon, 06 Jan 2014 12:48:43 +0800</pubDate>
        </item>
        <item>
            <title>Graphic Card</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
    </channel>
</rss>
