<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by satus999</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 08 Jun 2026 21:38:58 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>UNIFI, no WAN connection</title>
            <link>http://forum.lowyat.net/topic/2665747</link>
            <description>Hi everyone, i just bought a new router yesterday&lt;br /&gt;Model : TL-WR1043ND&lt;br /&gt;&lt;br /&gt;The new router is to replace my so called &amp;quot;UNIFI orange box&amp;quot; &lt;br /&gt;and the reasons i bought is because i want to have a stronger wifi signal/higher bandwidth&lt;br /&gt;&lt;br /&gt;well, i connected everything, followed the instruction, connection all seems fine.&lt;br /&gt;BUT, my WAN got no connection, no ip, no gateway, everything also 000.000.000.000&lt;br /&gt;and keep on shows connecting at the bottom there&lt;br /&gt;&lt;br /&gt;i connect my WAN cable (yellow colour) from the unifi modem to my new router WAN port.&lt;br /&gt;then, i have done all the required settings such as&lt;br /&gt;clone mac address and changing LAN address as the instructions paper stated&lt;br /&gt;&lt;br /&gt;but i still can&amp;#39;t get my connection. &lt;br /&gt;can anyone please heeelp to explain what happen?&lt;br /&gt;are the anyone out there experiencing the same problem?&lt;br /&gt;</description>
            <author>satus999</author>
            <category>Networks and Broadband</category>
            <pubDate>Sun, 13 Jan 2013 02:15:33 +0800</pubDate>
        </item>
        <item>
            <title>Ned help in C programming</title>
            <link>http://forum.lowyat.net/topic/2640261</link>
            <description>&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;#include &amp;#60;conio.h&amp;#62;&lt;br /&gt;&lt;br /&gt;void calc&amp;#40;&amp;#41;;&lt;br /&gt;void calc2&amp;#40;int *, int *&amp;#41;;&lt;br /&gt;int adults, children;&lt;br /&gt;float total_amount;&lt;br /&gt;&lt;br /&gt;main{&lt;br /&gt; &amp;nbsp; ....&lt;br /&gt; &amp;nbsp; ....&lt;br /&gt; &amp;nbsp; ....&lt;br /&gt; &amp;nbsp; calc&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt;getch&amp;#40;&amp;#41;;&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void calc&amp;#40;&amp;#41;{&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nPlease enter the number of items &amp;#40;Adults and children&amp;#41; &amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;n&amp;#40;Children has half price&amp;#41; &amp;#58; &amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nAdults &amp;#58; &amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%d&amp;#34;, &amp;amp;adults&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;nChildrens &amp;#58; &amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%d&amp;#34;, &amp;amp;children&amp;#41;;&lt;br /&gt;	calc2&amp;#40;&amp;amp;adults, &amp;amp;children&amp;#41;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void calc2&amp;#40;int *adults, int *children&amp;#41;{&lt;br /&gt;	total_amount = adults * 20; &lt;br /&gt;//the quantity &amp;#40;adults&amp;#41; is needed to multiply by a constant which is 20 and outcome &amp;#40;total_amount&amp;#41; needed to be in float format&lt;br /&gt;	printf&amp;#40;&amp;#34;%.2f&amp;#34;, total_amount&amp;#41;;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hello,&lt;br /&gt;above is my code.&lt;br /&gt;and my question is, &lt;br /&gt;&lt;br /&gt;Is there any way to get total_amount in float format?&lt;br /&gt;&lt;br /&gt;and,&lt;br /&gt;the error shows is &lt;br /&gt;int *adults&lt;br /&gt;Error : expression must have arithmetic or unscoped enum type</description>
            <author>satus999</author>
            <category>Codemasters</category>
            <pubDate>Mon, 24 Dec 2012 03:26:53 +0800</pubDate>
        </item>
        <item>
            <title>Need help in C &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/2637951</link>
            <description>hii,&lt;br /&gt;i&amp;#39;m just a very beginner in C programming.&lt;br /&gt;i need help on Pointer structure array.&lt;br /&gt;i wanna use pointer on my structure array. help please T.T&lt;br /&gt;below is a sample&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include &amp;lt;conio.h&amp;gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;struct testing {&lt;br /&gt;   char name[50];&lt;br /&gt;   int number;&lt;br /&gt;&lt;br /&gt;}; struct testing test[10];&lt;br /&gt;&lt;br /&gt;main(){&lt;br /&gt;&lt;br /&gt;    char *abc;&lt;br /&gt;    abc = test[0].name;&lt;br /&gt;&lt;br /&gt;    printf(&amp;quot;&amp;#092;n Enter your name &amp;quot;);&lt;br /&gt;    gets(test[0].name);&lt;br /&gt;&lt;br /&gt;    &lt;br /&gt;    int *num;&lt;br /&gt;    num = test[0].number;    &lt;br /&gt;&lt;br /&gt;    printf(&amp;quot;&amp;#092;n enter your number&amp;quot;);&lt;br /&gt;    scanf(&amp;quot;%d&amp;quot;, test[0].number);&lt;br /&gt;&lt;br /&gt;getch();&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;i want my test[0].name and test[0].number to store inside a pointer variable so that later i can use pointer to point it out.&lt;br /&gt;is there any way to do it? &lt;br /&gt;and i know my sample code is wrong, but i want something like that or you guys have better coding?&lt;br /&gt;please teach me &amp;#33; &lt;br /&gt;&lt;br /&gt;thank youu very much</description>
            <author>satus999</author>
            <category>Codemasters</category>
            <pubDate>Fri, 21 Dec 2012 23:57:30 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] Brand new FABER Fruit Juicer</title>
            <link>http://forum.lowyat.net/topic/2635406</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; FABER FJB 9600 Fruit Juicer &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; A whole box of &lt;b&gt;BRAND NEW&lt;/b&gt; FABER fruit juicer&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;RM500 (FIRM)  ---  &lt;br /&gt;&lt;br /&gt;Market price : RM689 [Source : &lt;a href='http://www.faberappliances.com.my/sa_juice_extractor_fjb9600.php' target='_blank'&gt;http://www.faberappliances.com.my/sa_juice...tor_fjb9600.php&lt;/a&gt;]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; N/A&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; COD / postage (*buyer pay for postage fee)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:&lt;/b&gt; OUG &amp;amp; Bukit Jalil &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt; PM me&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item:&lt;/b&gt; NEW &amp;#33;&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; &lt;b&gt;BRAND NEW&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt; won it from competition and not using it &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;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;&lt;img src='https://lh5.googleusercontent.com/-Lqz46JeSNOs/UNHw8O-zYoI/AAAAAAAAAZc/l-GYPp1Zkvg/s512/20121201_141725.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src='https://lh6.googleusercontent.com/-u_dMN6G_5pY/UNHw8GA4YNI/AAAAAAAAAZY/swzqg6tmieI/s512/20121201_141741.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src='https://lh4.googleusercontent.com/-sadh7HhZUKc/UNHw8G0CNgI/AAAAAAAAAZg/ePVJSQs5HbY/s640/20121201_141813.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>satus999</author>
            <category>Garage Sales Archive</category>
            <pubDate>Thu, 20 Dec 2012 01:01:52 +0800</pubDate>
        </item>
        <item>
            <title>NOT OPTIMUM MODE HELPP &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/2621433</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;i&amp;#39;m currently using Samsung 2233sw,&lt;br /&gt;previously i can play all games without any problems.&lt;br /&gt;but suddenly i have no idea why, message below keep on pop out on those &amp;quot;bad graphic games&amp;quot;&lt;br /&gt;&lt;br /&gt;&amp;quot;Not Optimum Mode Recommended Mode 1920 x 1080 60hz [?]&lt;br /&gt;&lt;br /&gt;and my &amp;quot;bad graphic games&amp;quot; are &lt;br /&gt;- Stronghold crusader&lt;br /&gt;- rise of nation&lt;br /&gt;- Sudden attack&lt;br /&gt;- XIII&lt;br /&gt;- Yahoo mini games&lt;br /&gt; etc&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;the warning message goes off when i press any button besides the screen.&lt;br /&gt;&lt;br /&gt;Graphic card : Geforce GT240&lt;br /&gt;Monitor : Samsung 2233sw [HDMI] [Digital] &lt;br /&gt;&lt;br /&gt;i&amp;#39;ve searched throughout the internet/ forums, but still no help =( &lt;br /&gt;&lt;br /&gt;HELP ME PLEASEEE T.T &lt;br /&gt;thank youu&lt;br /&gt;&lt;br /&gt;you guys can ask if i&amp;#39;ve miss out anything that you guys wanna know about it.</description>
            <author>satus999</author>
            <category>Technical Support</category>
            <pubDate>Mon, 10 Dec 2012 00:38:10 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] SteelSeries Qck+ gaming mousepad</title>
            <link>http://forum.lowyat.net/topic/2579999</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; SteelSeries Qck+ [Fnatic and Tyloo Edition]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; Brand new SteelSeries Qck+ gaming mousepad&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; RM69 [FIRM]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; ---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; COD / POS [buyer have to pay for Postage fee]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location:&lt;/b&gt; old klang road, kuchai, sri petaling &amp;amp; Bukit jalil&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt; PM me&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; Brand new&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;However, the price is &lt;b&gt;FIRM&lt;/b&gt; so don&amp;#39;t bother sending pm and ask for best price unless you&amp;#39;re buying in bulk. Thanks  &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>satus999</author>
            <category>Garage Sales Archive</category>
            <pubDate>Wed, 07 Nov 2012 19:09:53 +0800</pubDate>
        </item>
        <item>
            <title>WTS Razer Sling bag [Starcraft 2 Edition]</title>
            <link>http://forum.lowyat.net/topic/2578675</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; Razer Sling bag [Starcraft 2 Edition]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; 1 totally new Razer sling bag&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; RM100 [N/P: RM229]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty:&lt;/b&gt; N/A&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; COD (cash on delivery)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location:&lt;/b&gt; OUG, sri petaling, Bukit Jalil, Kuchai.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt; PM, email, whatsapp, phone call, etc methods also available &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;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; totally new &amp;#33; have not use it before. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Picture:&lt;/b&gt;&lt;br /&gt;</description>
            <author>satus999</author>
            <category>Garage Sales Archive</category>
            <pubDate>Tue, 06 Nov 2012 20:53:12 +0800</pubDate>
        </item>
        <item>
            <title>Recommendation free hosting website</title>
            <link>http://forum.lowyat.net/topic/2382607</link>
            <description>&lt;span style='font-size:14pt;line-height:100%'&gt;Hi guys,&lt;br /&gt;&lt;br /&gt;i would like get some suggestion &lt;br /&gt;that any good recommended for free hosting website?&lt;br /&gt;&lt;br /&gt;i know &lt;a href='http://www.000webhost.com/' target='_blank'&gt;http://www.000webhost.com/&lt;/a&gt; is one of them&lt;br /&gt;but is there any more which better than 000webhost?? &lt;br /&gt;&lt;br /&gt;replies are much appreciated &amp;#33;&amp;#33; thank you =)&lt;br /&gt;&lt;/span&gt;</description>
            <author>satus999</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Mon, 11 Jun 2012 15:56:24 +0800</pubDate>
        </item>
        <item>
            <title>L&amp;gt;Free hosting website</title>
            <link>http://forum.lowyat.net/topic/2382568</link>
            <description>&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Arial'&gt;Hi guys,&lt;br /&gt;&lt;br /&gt;i would like get some suggestion &lt;br /&gt;that any good recommended for free hosting website?&lt;br /&gt;&lt;br /&gt;i know &lt;a href='http://www.000webhost.com/' target='_blank'&gt;http://www.000webhost.com/&lt;/a&gt; is one of them&lt;br /&gt;but is there any more which better than 000webhost?? &lt;br /&gt;&lt;br /&gt;replies are much appreciated &amp;#33;&amp;#33; thank you =)&lt;/span&gt;&lt;/span&gt;</description>
            <author>satus999</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Mon, 11 Jun 2012 15:30:10 +0800</pubDate>
        </item>
        <item>
            <title>Birthday celebration</title>
            <link>http://forum.lowyat.net/topic/2333127</link>
            <description>Hi guys &amp;#33;&amp;#33; &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;&lt;br /&gt;I need some opinion or suggestion regarding where is a good place to celebrate a birthday event &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;&lt;br /&gt;Any good and reasonable restaurant/cafe/etc (no pub or club) around Klang Valley to celebrate birthday?&lt;br /&gt;My budget is around RM200 - RM400&lt;br /&gt;Number of people : 5 - 10&lt;br /&gt;&lt;br /&gt;If you have any questions, please do not feel hesitate ask =)&lt;br /&gt;&lt;br /&gt;Thank you xD&lt;br /&gt;</description>
            <author>satus999</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Fri, 04 May 2012 23:31:56 +0800</pubDate>
        </item>
        <item>
            <title>Looking for laptop, Suggestion please :D</title>
            <link>http://forum.lowyat.net/topic/1895892</link>
            <description>I&amp;#39;m planning to buy a laptop and my budget is 2k &lt;br /&gt;Any good recommend ?&lt;br /&gt;&lt;br /&gt;TQ =) &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>satus999</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Sat, 28 May 2011 12:33:08 +0800</pubDate>
        </item>
        <item>
            <title>Help my PSP &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1808269</link>
            <description>Hello fellows .. &lt;br /&gt;&lt;br /&gt;recently i just downloaded some psp games, &lt;br /&gt;and that game has 2 files, the first one psp_game and UMD_DATA.bin&lt;br /&gt;i drag this 2 files into my UMDgen4.00 and saved it as .iso file, but after the conversion had done, it became winrar file .&lt;br /&gt;&lt;br /&gt;Any idea how to solve ? or is there any step i did wrong ?&lt;br /&gt;&lt;br /&gt;Please help ... reply will appreciated &amp;#33;&amp;#33; =) thanks &amp;#33;</description>
            <author>satus999</author>
            <category>Technical Support</category>
            <pubDate>Sat, 26 Mar 2011 19:52:11 +0800</pubDate>
        </item>
        <item>
            <title>Study Programming ?</title>
            <link>http://forum.lowyat.net/topic/1787131</link>
            <description>Hello,&lt;br /&gt;&lt;br /&gt;I want to study IT and i just finished my SPM last year (2010), so this year i&amp;#39;m planning to take IT foundation.&lt;br /&gt;and i wanted to go APIIT to study my IT foundation. ( best choice ?? ) &lt;br /&gt;&lt;br /&gt;after my foundation which university is the best to study programming ? &lt;br /&gt;&lt;br /&gt;I&amp;#39;m quite miserable .. please help ..&lt;br /&gt;thank you &amp;#33; =)</description>
            <author>satus999</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 11 Mar 2011 10:11:31 +0800</pubDate>
        </item>
        <item>
            <title>SPM 2010</title>
            <link>http://forum.lowyat.net/topic/1772562</link>
            <description>Hey guys, i heard that SPM 2010 results will be out at 14 of march .. is that true ??</description>
            <author>satus999</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 28 Feb 2011 21:35:05 +0800</pubDate>
        </item>
        <item>
            <title>pesechip.com</title>
            <link>http://forum.lowyat.net/topic/1766108</link>
            <description>Anyone heard about pesechip.com before ?&lt;br /&gt;can this company be trusted ? &lt;br /&gt;any comment about this company ?? &lt;br /&gt;Need reply from you guys..&lt;br /&gt;&lt;br /&gt;thanks..</description>
            <author>satus999</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Wed, 23 Feb 2011 23:30:26 +0800</pubDate>
        </item>
        <item>
            <title>HELP ABOUT PAYPAL &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1766061</link>
            <description>Hi guys, &lt;br /&gt;recently i had bought something online by using paypal to paid, but now the problem is&lt;br /&gt;I ACCIDENTALLY SENT TWICE PAYMENT TO THE SELLER &amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;so that means the buyer will received the money twice &amp;#33;&amp;#33; &lt;br /&gt;&lt;br /&gt;I&amp;#39;m buying goods from people i don&amp;#39;t know .. I sent the payment to the buyer&amp;#39;s email.&lt;br /&gt;&lt;br /&gt;IS THERE ANY SOLUTION TO CANCEL THE FIRST PAYMENT &amp;#33;&amp;#33;?? ?? &lt;br /&gt;&lt;br /&gt;really need help &amp;#33; please .. please.. I don&amp;#39;t want to waste my money T.T &lt;br /&gt;&lt;br /&gt;Reply will be appreciated &amp;#33;&amp;#33;&lt;br /&gt;help please .. &lt;br /&gt;&lt;br /&gt;thank you =)</description>
            <author>satus999</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Wed, 23 Feb 2011 23:03:33 +0800</pubDate>
        </item>
        <item>
            <title>New in paypal, NEED HELP &amp;#33; thx</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Technical Support</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>New in paypal, NEED HELP &amp;#33; thx</title>
            <link>http://forum.lowyat.net/topic/1756719</link>
            <description>Hi, i&amp;#39;m currently new in paypal and i wanna buy goods from a buyer and i&amp;#39;m worry how should i pay him and what kind of info should i give him ?&lt;br /&gt;&lt;br /&gt;For example : &lt;br /&gt;&lt;br /&gt;I&amp;#39;m buying PRODUCT A from a buyer&lt;br /&gt;so, what kind of info should i give it to him so that i can pay him and I can 100% confirm receive my goods safely ?&lt;br /&gt;&lt;br /&gt;Really need you guys&amp;#39; help .. &lt;br /&gt;Reply will be really appreciated &amp;#33; &lt;br /&gt;&lt;br /&gt;thanks alot &amp;#33;</description>
            <author>satus999</author>
            <category>Finance, Business and Investment House</category>
            <pubDate>Wed, 16 Feb 2011 22:19:53 +0800</pubDate>
        </item>
        <item>
            <title>New in paypal, NEED HELP &amp;#33; thx</title>
            <link>http://forum.lowyat.net/topic/1756718</link>
            <description>Hi, i&amp;#39;m currently new in paypal and i wanna buy goods from a buyer and i&amp;#39;m worry how should i pay him and what kind of info should i give him ?&lt;br /&gt;&lt;br /&gt;For example : &lt;br /&gt;&lt;br /&gt;I&amp;#39;m buying PRODUCT A from a buyer&lt;br /&gt;so, what kind of info should i give it to him so that i can pay him and I can 100% confirm receive my goods safely ?&lt;br /&gt;&lt;br /&gt;Really need you guys&amp;#39; help .. &lt;br /&gt;Reply will be really appreciated &amp;#33; &lt;br /&gt;&lt;br /&gt;thanks alot &amp;#33;</description>
            <author>satus999</author>
            <category>Serious Kopitiam</category>
            <pubDate>Wed, 16 Feb 2011 22:19:06 +0800</pubDate>
        </item>
        <item>
            <title>New in paypal, NEED HELP &amp;#33; thx</title>
            <link>http://forum.lowyat.net/topic/1756708</link>
            <description>Hi, i&amp;#39;m currently new in paypal and i wanna buy goods from a buyer and i&amp;#39;m worry how should i pay him and what kind of info should i give him ?&lt;br /&gt;&lt;br /&gt;For example : &lt;br /&gt;&lt;br /&gt;I&amp;#39;m buying PRODUCT A from a buyer&lt;br /&gt;so, what kind of info should i give it to him so that i can pay him and I can 100% confirm receive my goods safely ?&lt;br /&gt;&lt;br /&gt;Really need you guys&amp;#39; help .. &lt;br /&gt;Reply will be really appreciated &amp;#33; &lt;br /&gt;&lt;br /&gt;thanks alot &amp;#33;</description>
            <author>satus999</author>
            <category>Networks and Broadband</category>
            <pubDate>Wed, 16 Feb 2011 22:14:34 +0800</pubDate>
        </item>
    </channel>
</rss>
