<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Coding-Central .::FREE WAP SCRIPTS, FREE INSTALLATION AND SUPPORT FOR ANY SCRIPT::. - All Forums]]></title>
		<link>http://coding-central.info/</link>
		<description><![CDATA[Coding-Central .::FREE WAP SCRIPTS, FREE INSTALLATION AND SUPPORT FOR ANY SCRIPT::. - http://coding-central.info]]></description>
		<pubDate>Sun, 14 Mar 2010 04:10:25 +0300</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Autoindex Help Align Left]]></title>
			<link>http://coding-central.info/showthread.php?tid=1202</link>
			<pubDate>Sat, 13 Mar 2010 08:35:54 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1202</guid>
			<description><![CDATA[Can someone mod this Autoindex Script,i want the files/folder list to be align in left and not in center. Here's the demo where the files/folder was align in center --&gt; <a href="http://waprock.net/Games" target="_blank">http://waprock.net/Games</a><br />
<br />
I'm just a newbie in php that's why i need your help guys.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;? &#36;kol_vo=10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //number of content on the page<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;filex=".jar";&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //remove extension in the file name on the page<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //here should write expanding files in the folder<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //write only one type of expansion, but the script can ship and several extensions<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //if the extension does not match the reference file will be with him, that share is not very nice =)<br />
<br />
&#36;home ="http://waprock.net";<br />
&#36;back ="http://waprock.net/Games";<br />
?&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"/&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="http://waprock.net/style.css"/&gt;<br />
&lt;title&gt;-=waprock.net=-&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id='rounded-box'&gt;&lt;b class='r5'&gt;&lt;/b&gt;&lt;b class='r3'&gt;&lt;/b&gt;&lt;b class='r2'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;div class='inner-box'&gt;<br />
<br />
<br />
&lt;div class="bottom"&gt; &lt;img src="http://waprock.net/waprock.png" alt="waprock.net"&gt;&lt;br&gt; &lt;/div&gt; <br />
<br />
&lt;div class="content"&gt; <br />
&lt;img src="http://waprock.net/kn.gif"&gt; &lt;a href="http://waprock.net/advertize.php"&gt;Advertize here!&lt;/a&gt;&lt;br&gt;<br />
&lt;img src="http://waprock.net/kn.gif"&gt; &lt;/div&gt; <br />
<br />
&lt;div class="title"&gt; &lt;center&gt;Select File&lt;/center&gt; &lt;/div&gt; <br />
&lt;div class="content"&gt; <br />
&lt;?php<br />
if(!isset(&#36;_REQUEST['sort'&#93;) or &#36;_REQUEST['sort'&#93;=="name"){<br />
echo "&lt;ul&gt;";<br />
&#36;fl=array();<br />
&#36;dir_pointer=opendir(".");<br />
while ((&#36;res=readdir(&#36;dir_pointer))!==FALSE){<br />
if(&#36;res==".")unset(&#36;res);<br />
if(&#36;res=="..")unset(&#36;res);<br />
if(&#36;res=="index.php")unset(&#36;res);<br />
if(!&#36;res==""){<br />
array_push(&#36;fl,&#36;res);}<br />
}<br />
sort(&#36;fl);<br />
&#36;cnt=count(&#36;fl);<br />
&#36;n = &#36;kol_vo;<br />
@&#36;p= intval(&#36;_REQUEST['p'&#93;);<br />
if(empty(&#36;_REQUEST['page'&#93;) or &#36;_REQUEST['page'&#93;&lt;1) {&#36;_REQUEST['page'&#93;=1; }<br />
if(&#36;_REQUEST['page'&#93;&gt;&#36;cnt) { &#36;page=&#36;cnt; }<br />
&#36;pages = intval((&#36;cnt-1 )/&#36;n+1);<br />
&#36;st = &#36;_REQUEST['page'&#93;*&#36;n-&#36;n;<br />
&#36;nx = &#36;st+&#36;n;<br />
for(&#36;i=&#36;st; &#36;i&lt;&#36;nx;&#36;i++)<br />
{<br />
if(!isset(&#36;fl[&#36;i&#93;))continue;<br />
&#36;fname1= ereg_replace (&#36;filex, "", &#36;fl[&#36;i&#93;);<br />
&#36;fnsize1= round(filesize (&#36;fl[&#36;i&#93;) /1024 , 1);<br />
&#36;fninfo1="info/".&#36;fname1.".txt";<br />
if (&#36;fl[&#36;i&#93; !="info" and &#36;fl[&#36;i&#93; !="conf") {<br />
if (file_exists(&#36;fninfo1)) {echo "&lt;a href=&#92;"&#36;fl[&#36;i&#93;&#92;"&gt;&#36;fname1&lt;/a&gt;&lt;br/&gt;"; include(&#36;fninfo1); echo "&lt;br&gt;";}<br />
else {echo "&lt;a href=&#92;"&#36;fl[&#36;i&#93;&#92;"&gt;&#36;fname1&lt;/a&gt;&lt;br&gt;";};}<br />
}<br />
echo "&lt;/ul&gt;";<br />
for(&#36;c=0; &#36;c&lt;&#36;pages; &#36;c++) {<br />
&#36;pg = &#36;c+1;<br />
if(&#36;pg == &#36;_REQUEST['page'&#93;) {<br />
echo " [&lt;span class=&#92;"bold&#92;"&gt;&#36;pg&lt;/span&gt;&#93;"; }<br />
else {echo " [&lt;a href=&#92;"?page=".&#36;pg."&amp;sort=name&#92;"&gt;".&#36;pg."&lt;/a&gt;&#93;"; }<br />
}<br />
echo "&lt;br/&gt;<br />
By Name | &lt;a href=&#92;"?sort=date&amp;page=1&#92;"&gt;By Date&lt;/a&gt;";<br />
<br />
<br />
echo "&lt;br/&gt;&lt;a href='&#36;back'&gt;Back&lt;/a&gt; | &lt;a href='&#36;home'&gt;Home&lt;/a&gt;";<br />
<br />
<br />
}<br />
if(isset(&#36;_REQUEST['sort'&#93;) and &#36;_REQUEST['sort'&#93;=="date"){<br />
echo "&lt;ul&gt;";<br />
&#36;fl=array();<br />
&#36;dir_pointer=opendir(".");<br />
while ((&#36;res=readdir(&#36;dir_pointer))!==FALSE){<br />
if(&#36;res==".")unset(&#36;res);<br />
if(&#36;res=="..")unset(&#36;res);<br />
if(&#36;res=="index.php")unset(&#36;res);<br />
if(!&#36;res==""){array_push(&#36;fl,&#36;res);}<br />
}<br />
for(&#36;i=0; &#36;i&lt;count(&#36;fl); &#36;i++) {<br />
&#36;time[&#36;fl[&#36;i&#93;&#93; = filemtime(&#36;fl[&#36;i&#93;); }<br />
arsort(&#36;time);<br />
&#36;keys = array_keys(&#36;time);<br />
&#36;cnt=count(&#36;keys);<br />
&#36;n = &#36;kol_vo;<br />
@&#36;p= intval(&#36;_REQUEST['p'&#93;);<br />
if(empty(&#36;_REQUEST['page'&#93;) or &#36;_REQUEST['page'&#93;&lt;1) { &#36;page=1; }<br />
if(&#36;_REQUEST['page'&#93;&gt;&#36;cnt) { &#36;page=&#36;cnt; }<br />
&#36;pages = intval((&#36;cnt-1 )/&#36;n+1);<br />
&#36;st = &#36;_REQUEST['page'&#93;*&#36;n-&#36;n;<br />
&#36;nx = &#36;st+&#36;n;<br />
for(&#36;i=&#36;st; &#36;i&lt;&#36;nx;&#36;i++)<br />
{<br />
if(!isset(&#36;keys[&#36;i&#93;))continue;<br />
&#36;fname2= ereg_replace ("&#36;filex", "", &#36;keys[&#36;i&#93;);<br />
&#36;fnsize2= round(filesize (&#36;keys[&#36;i&#93;) /1024 , 1);<br />
&#36;fninfo2="info/".&#36;fname2.".txt";<br />
if (&#36;keys[&#36;i&#93; !="info" and &#36;keys[&#36;i&#93; !="conf") {<br />
if (file_exists(&#36;fninfo2)) {echo "&lt;a href=&#92;"&#36;keys[&#36;i&#93;&#92;"&gt;&#36;fname2&lt;/a&gt;&lt;br/&gt;"; include(&#36;fninfo2); echo "&lt;br&gt;";}<br />
else {echo "&lt;a href=&#92;"&#36;keys[&#36;i&#93;&#92;"&gt;&#36;fname2&lt;/a&gt;&lt;br&gt;";};}<br />
}<br />
echo "&lt;/ul&gt;";<br />
for(&#36;c=0; &#36;c&lt;&#36;pages; &#36;c++) {<br />
&#36;pg = &#36;c+1;<br />
if(&#36;pg == &#36;_REQUEST['page'&#93;) {<br />
echo " [&lt;span class=&#92;"bold&#92;"&gt;&#36;pg&lt;/span&gt;&#93;"; }<br />
else {echo " [&lt;a href=&#92;"?page=".&#36;pg."&amp;sort=date&#92;"&gt;".&#36;pg."&lt;/a&gt;&#93;"; }<br />
}<br />
echo "&lt;br/&gt; <br />
&lt;a href=&#92;"?sort=name&amp;page=1&#92;"&gt;By Name&lt;/a&gt; | By Date";<br />
<br />
echo "&lt;br/&gt;&lt;a href='&#36;back'&gt;Back&lt;/a&gt; | &lt;a href='&#36;home'&gt;Home&lt;/a&gt;";<br />
}<br />
?&gt;<br />
&lt;/div&gt;<br />
&lt;div class="bottom"&gt;&lt;center&gt;&amp;copy;2010 waprock.net&lt;/center&gt;&lt;/div&gt;&lt;/div&gt;<br />
<br />
&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r2'&gt;&lt;/b&gt;&lt;b class='r3'&gt;&lt;/b&gt;&lt;b class='r5'&gt;&lt;/b&gt;&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/head&gt;<br />
&lt;/html&gt;</code></div></div>
]]></description>
			<content:encoded><![CDATA[Can someone mod this Autoindex Script,i want the files/folder list to be align in left and not in center. Here's the demo where the files/folder was align in center --&gt; <a href="http://waprock.net/Games" target="_blank">http://waprock.net/Games</a><br />
<br />
I'm just a newbie in php that's why i need your help guys.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;? &#36;kol_vo=10;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //number of content on the page<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;filex=".jar";&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //remove extension in the file name on the page<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //here should write expanding files in the folder<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //write only one type of expansion, but the script can ship and several extensions<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //if the extension does not match the reference file will be with him, that share is not very nice =)<br />
<br />
&#36;home ="http://waprock.net";<br />
&#36;back ="http://waprock.net/Games";<br />
?&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"/&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="http://waprock.net/style.css"/&gt;<br />
&lt;title&gt;-=waprock.net=-&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id='rounded-box'&gt;&lt;b class='r5'&gt;&lt;/b&gt;&lt;b class='r3'&gt;&lt;/b&gt;&lt;b class='r2'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;div class='inner-box'&gt;<br />
<br />
<br />
&lt;div class="bottom"&gt; &lt;img src="http://waprock.net/waprock.png" alt="waprock.net"&gt;&lt;br&gt; &lt;/div&gt; <br />
<br />
&lt;div class="content"&gt; <br />
&lt;img src="http://waprock.net/kn.gif"&gt; &lt;a href="http://waprock.net/advertize.php"&gt;Advertize here!&lt;/a&gt;&lt;br&gt;<br />
&lt;img src="http://waprock.net/kn.gif"&gt; &lt;/div&gt; <br />
<br />
&lt;div class="title"&gt; &lt;center&gt;Select File&lt;/center&gt; &lt;/div&gt; <br />
&lt;div class="content"&gt; <br />
&lt;?php<br />
if(!isset(&#36;_REQUEST['sort']) or &#36;_REQUEST['sort']=="name"){<br />
echo "&lt;ul&gt;";<br />
&#36;fl=array();<br />
&#36;dir_pointer=opendir(".");<br />
while ((&#36;res=readdir(&#36;dir_pointer))!==FALSE){<br />
if(&#36;res==".")unset(&#36;res);<br />
if(&#36;res=="..")unset(&#36;res);<br />
if(&#36;res=="index.php")unset(&#36;res);<br />
if(!&#36;res==""){<br />
array_push(&#36;fl,&#36;res);}<br />
}<br />
sort(&#36;fl);<br />
&#36;cnt=count(&#36;fl);<br />
&#36;n = &#36;kol_vo;<br />
@&#36;p= intval(&#36;_REQUEST['p']);<br />
if(empty(&#36;_REQUEST['page']) or &#36;_REQUEST['page']&lt;1) {&#36;_REQUEST['page']=1; }<br />
if(&#36;_REQUEST['page']&gt;&#36;cnt) { &#36;page=&#36;cnt; }<br />
&#36;pages = intval((&#36;cnt-1 )/&#36;n+1);<br />
&#36;st = &#36;_REQUEST['page']*&#36;n-&#36;n;<br />
&#36;nx = &#36;st+&#36;n;<br />
for(&#36;i=&#36;st; &#36;i&lt;&#36;nx;&#36;i++)<br />
{<br />
if(!isset(&#36;fl[&#36;i]))continue;<br />
&#36;fname1= ereg_replace (&#36;filex, "", &#36;fl[&#36;i]);<br />
&#36;fnsize1= round(filesize (&#36;fl[&#36;i]) /1024 , 1);<br />
&#36;fninfo1="info/".&#36;fname1.".txt";<br />
if (&#36;fl[&#36;i] !="info" and &#36;fl[&#36;i] !="conf") {<br />
if (file_exists(&#36;fninfo1)) {echo "&lt;a href=&#92;"&#36;fl[&#36;i]&#92;"&gt;&#36;fname1&lt;/a&gt;&lt;br/&gt;"; include(&#36;fninfo1); echo "&lt;br&gt;";}<br />
else {echo "&lt;a href=&#92;"&#36;fl[&#36;i]&#92;"&gt;&#36;fname1&lt;/a&gt;&lt;br&gt;";};}<br />
}<br />
echo "&lt;/ul&gt;";<br />
for(&#36;c=0; &#36;c&lt;&#36;pages; &#36;c++) {<br />
&#36;pg = &#36;c+1;<br />
if(&#36;pg == &#36;_REQUEST['page']) {<br />
echo " [&lt;span class=&#92;"bold&#92;"&gt;&#36;pg&lt;/span&gt;]"; }<br />
else {echo " [&lt;a href=&#92;"?page=".&#36;pg."&amp;sort=name&#92;"&gt;".&#36;pg."&lt;/a&gt;]"; }<br />
}<br />
echo "&lt;br/&gt;<br />
By Name | &lt;a href=&#92;"?sort=date&amp;page=1&#92;"&gt;By Date&lt;/a&gt;";<br />
<br />
<br />
echo "&lt;br/&gt;&lt;a href='&#36;back'&gt;Back&lt;/a&gt; | &lt;a href='&#36;home'&gt;Home&lt;/a&gt;";<br />
<br />
<br />
}<br />
if(isset(&#36;_REQUEST['sort']) and &#36;_REQUEST['sort']=="date"){<br />
echo "&lt;ul&gt;";<br />
&#36;fl=array();<br />
&#36;dir_pointer=opendir(".");<br />
while ((&#36;res=readdir(&#36;dir_pointer))!==FALSE){<br />
if(&#36;res==".")unset(&#36;res);<br />
if(&#36;res=="..")unset(&#36;res);<br />
if(&#36;res=="index.php")unset(&#36;res);<br />
if(!&#36;res==""){array_push(&#36;fl,&#36;res);}<br />
}<br />
for(&#36;i=0; &#36;i&lt;count(&#36;fl); &#36;i++) {<br />
&#36;time[&#36;fl[&#36;i]] = filemtime(&#36;fl[&#36;i]); }<br />
arsort(&#36;time);<br />
&#36;keys = array_keys(&#36;time);<br />
&#36;cnt=count(&#36;keys);<br />
&#36;n = &#36;kol_vo;<br />
@&#36;p= intval(&#36;_REQUEST['p']);<br />
if(empty(&#36;_REQUEST['page']) or &#36;_REQUEST['page']&lt;1) { &#36;page=1; }<br />
if(&#36;_REQUEST['page']&gt;&#36;cnt) { &#36;page=&#36;cnt; }<br />
&#36;pages = intval((&#36;cnt-1 )/&#36;n+1);<br />
&#36;st = &#36;_REQUEST['page']*&#36;n-&#36;n;<br />
&#36;nx = &#36;st+&#36;n;<br />
for(&#36;i=&#36;st; &#36;i&lt;&#36;nx;&#36;i++)<br />
{<br />
if(!isset(&#36;keys[&#36;i]))continue;<br />
&#36;fname2= ereg_replace ("&#36;filex", "", &#36;keys[&#36;i]);<br />
&#36;fnsize2= round(filesize (&#36;keys[&#36;i]) /1024 , 1);<br />
&#36;fninfo2="info/".&#36;fname2.".txt";<br />
if (&#36;keys[&#36;i] !="info" and &#36;keys[&#36;i] !="conf") {<br />
if (file_exists(&#36;fninfo2)) {echo "&lt;a href=&#92;"&#36;keys[&#36;i]&#92;"&gt;&#36;fname2&lt;/a&gt;&lt;br/&gt;"; include(&#36;fninfo2); echo "&lt;br&gt;";}<br />
else {echo "&lt;a href=&#92;"&#36;keys[&#36;i]&#92;"&gt;&#36;fname2&lt;/a&gt;&lt;br&gt;";};}<br />
}<br />
echo "&lt;/ul&gt;";<br />
for(&#36;c=0; &#36;c&lt;&#36;pages; &#36;c++) {<br />
&#36;pg = &#36;c+1;<br />
if(&#36;pg == &#36;_REQUEST['page']) {<br />
echo " [&lt;span class=&#92;"bold&#92;"&gt;&#36;pg&lt;/span&gt;]"; }<br />
else {echo " [&lt;a href=&#92;"?page=".&#36;pg."&amp;sort=date&#92;"&gt;".&#36;pg."&lt;/a&gt;]"; }<br />
}<br />
echo "&lt;br/&gt; <br />
&lt;a href=&#92;"?sort=name&amp;page=1&#92;"&gt;By Name&lt;/a&gt; | By Date";<br />
<br />
echo "&lt;br/&gt;&lt;a href='&#36;back'&gt;Back&lt;/a&gt; | &lt;a href='&#36;home'&gt;Home&lt;/a&gt;";<br />
}<br />
?&gt;<br />
&lt;/div&gt;<br />
&lt;div class="bottom"&gt;&lt;center&gt;&amp;copy;2010 waprock.net&lt;/center&gt;&lt;/div&gt;&lt;/div&gt;<br />
<br />
&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r1'&gt;&lt;/b&gt;&lt;b class='r2'&gt;&lt;/b&gt;&lt;b class='r3'&gt;&lt;/b&gt;&lt;b class='r5'&gt;&lt;/b&gt;&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/head&gt;<br />
&lt;/html&gt;</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[topsimob]]></title>
			<link>http://coding-central.info/showthread.php?tid=1201</link>
			<pubDate>Fri, 12 Mar 2010 16:52:06 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1201</guid>
			<description><![CDATA[top rating script not viewable on web.only wap/opera etc upload all 4 files my edit is here----&gt; <a href="http://wapcount.netne.net" target="_blank">http://wapcount.netne.net</a>   english not russian change counter image to your own design 4 different counters to choose registered sites must put your counter on their site or they wont be listed enjoy folks!!![attachment=780&#93;[attachment=781&#93;[attachment=782&#93;[attachment=783&#93;         &lt;----sql]]></description>
			<content:encoded><![CDATA[top rating script not viewable on web.only wap/opera etc upload all 4 files my edit is here----&gt; <a href="http://wapcount.netne.net" target="_blank">http://wapcount.netne.net</a>   english not russian change counter image to your own design 4 different counters to choose registered sites must put your counter on their site or they wont be listed enjoy folks!!![attachment=780][attachment=781][attachment=782][attachment=783]         &lt;----sql]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PAN needed for any transaction on paypal.]]></title>
			<link>http://coding-central.info/showthread.php?tid=1200</link>
			<pubDate>Thu, 11 Mar 2010 11:44:29 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1200</guid>
			<description><![CDATA[Hello guys,<br />
<br />
Now there is another good and bad news for we Indian guys, i said BAD and GOOD news because for some people its not good news and for some people its good news as they have PAN card but for some ppl its bad news as they dont have PAN card.<br />
<br />
If you dont have a PAN card you cant access your Paypal Account.<br />
<br />
So now you will have to apply for PAN card.<br />
<br />
go to the following link: <br />
<a href="http://india.gov.in/outerwin.php?id=https://tin.tin.nsdl.com/pan/form49A.html" target="_blank">http://india.gov.in/outerwin.php?id=http...http://india.gov.in/outerwin.php?id=https://tin.tin.nsdl.com/pan/fo</a><br />
<br />
and for instructions:<br />
<br />
<a href="https://tin.tin.nsdl.com/pan/Instructions49A.html#instruct_documents" target="_blank">https://tin.tin.nsdl.com/pan/Instruction...https://tin.tin.nsdl.com/pan/Instructions49A.html#instruct</a>]]></description>
			<content:encoded><![CDATA[Hello guys,<br />
<br />
Now there is another good and bad news for we Indian guys, i said BAD and GOOD news because for some people its not good news and for some people its good news as they have PAN card but for some ppl its bad news as they dont have PAN card.<br />
<br />
If you dont have a PAN card you cant access your Paypal Account.<br />
<br />
So now you will have to apply for PAN card.<br />
<br />
go to the following link: <br />
<a href="http://india.gov.in/outerwin.php?id=https://tin.tin.nsdl.com/pan/form49A.html" target="_blank">http://india.gov.in/outerwin.php?id=http...http://india.gov.in/outerwin.php?id=https://tin.tin.nsdl.com/pan/fo</a><br />
<br />
and for instructions:<br />
<br />
<a href="https://tin.tin.nsdl.com/pan/Instructions49A.html#instruct_documents" target="_blank">https://tin.tin.nsdl.com/pan/Instruction...https://tin.tin.nsdl.com/pan/Instructions49A.html#instruct</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Buy New HTC Google Nexus One $220, Nokia X6 $200,Sidekick LX 2009 $130]]></title>
			<link>http://coding-central.info/showthread.php?tid=1199</link>
			<pubDate>Thu, 11 Mar 2010 02:37:42 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1199</guid>
			<description><![CDATA[Xylotrade Limited is one of the leading supplier of high-end products to customers, we deal primarily in genuine and<br />
<br />
brand new electronics, all items are sourced directly from the manufacturers and carry the manufacturer’s warranty.<br />
<br />
We ship 100% of our orders the same business day. with the Registered No.05341496.<br />
<br />
We specialize in a wide range of products such as laptops, mobile phones, plasma &amp; lcd tv, mp3 &amp; mp4 players, video<br />
<br />
games console, digital cameras, dvd players (Etc) at cheap &amp; affordable prices.<br />
<br />
Order from us today and save 10% or more on all your order as we offer the promo of buy 2Unit Get Free Item Free.<br />
<br />
<br />
COMPANY FULL DETAILS.<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009<br />
-----------------------------------------------------------------<br />
<br />
Hours of operation:<br />
Monday - Thursday 8:00am - 9:00pm EST<br />
Friday 9:00am - 8:00pm EST<br />
Saturday Sunday- 9:00am - 8:00pm EST.<br />
-----------------------------------------------------------------<br />
<br />
WHY BUY FROM US?<br />
<br />
* Your privacy is assured<br />
* Our prices are second to none<br />
* Secure transaction guaranteed<br />
* We ship Monday through Saturday.<br />
* Free shipping on qualified orders<br />
* We offer reasonable discount on bulk purchases<br />
* We ship same day after confirmation of payment.<br />
* We offer a 30 day return policy and a 100% money back guarantee.<br />
<br />
Xylotrade Limited® strive to offer high-quality products at competitive prices. All of our products are brand new,<br />
<br />
never used, never rebuilt,original.<br />
<br />
All our product comes with the minimum warranty of 1 full international warranty from manufacturer.<br />
<br />
CHECK OUT FOR OUR EXTRA CHEAPER PRODUCT LIST:<br />
<br />
Apple Tablet iPad 64GB (Wi-Fi + 3G) .....&#36;350usd<br />
Apple Tablet iPad 32GB (Wi-Fi + 3G) ....&#36;290usd<br />
Apple Tablet iPad 16GB (Wi-Fi + 3G).....&#36;250usd<br />
<br />
<br />
T-Mobile Sidekick:<br />
T-Mobile Pulse ---------------&#36;160<br />
T-Mobile MyTouch 3G -----&#36;140<br />
T-Mobile G2 Touch ----------&#36;145<br />
T-Mobile Sidekick LX 2008–&#36;120<br />
T-Mobile Sidekick LX 2009–&#36;130<br />
T-Mobile Sidekick LX — &#36;90<br />
T-Mobile Shadow — &#36;105<br />
T-Mobile G1 — &#36;110<br />
T-Mobile Sidekick 3 — &#36;85<br />
Juicy Couture Sidekick 2 — &#36;75<br />
<br />
Apple iPhone:<br />
Apple iPhone 3GS 32GB- &#36;190<br />
Apple iPhone 3GS 16GB- &#36;180<br />
Apple iPhone 4GB — &#36;90<br />
Apple iPhone 8GB — &#36;110<br />
Apple iPhone 16GB — &#36;115<br />
Apple iPhone 3G 8GB — &#36;125<br />
Apple iPhone 3G 16GB — &#36;135<br />
<br />
Palm Pixi ..........&#36;215<br />
Palm Pre............&#36;180<br />
Palm Treo Pro.......&#36;190<br />
Palm Centro.........&#36;1850<br />
<br />
BlackBerry:<br />
BlackBerry Bold 9700 --- &#36;200<br />
BlackBerry Curve 8520---&#36;175<br />
BlackBerry Tour 9630 ---&#36;170<br />
Blackberry Curve 8900 — &#36;150<br />
BlackBerry Storm2 9520-&#36;200<br />
BlackBerry Storm2 9550-&#36;200<br />
Blackberry Storm 9500 — &#36;130<br />
Blackberry Storm 9530 — &#36;140<br />
Blackberry Pearl Flip 8220 — &#36;100<br />
Blackberry Bold 9000 — &#36;120<br />
Blackberry Curve 8320 — &#36;105<br />
<br />
<br />
Motorola phones<br />
Motorola XT720 MOTOROI &#36;210<br />
Motorola BACKFLIP -----&#36;215<br />
Motorola XT800 ------------&#36;205<br />
Motorola ROKR ZN50----&#36;200<br />
Motorola Karma QA1-----&#36;200<br />
Motorola L800t-----&#36;190<br />
Motorola W7 Active Edition ----&#36;180<br />
Motorola ZN300----&#36;200<br />
Motorola COCKTAIL VE70----&#36;200<br />
Motorola ZN200-----&#36;160<br />
<br />
<br />
HTC:<br />
HTC Desire ------------ &#36;245<br />
HTC HD mini ------ &#36;240<br />
HTC Legend ---- &#36;220<br />
HTC Google Nexus One &#36;220<br />
HTC Smart ---- &#36;201<br />
HTC Tattoo --- &#36;200<br />
HTC Pure ------&#36;200<br />
HTC Snap ------&#36;160<br />
HTC Hero -------&#36;180<br />
HTC Touch Pro — &#36;150<br />
HTC Touch Diamond 2 — &#36;180<br />
HTC Touch Diamond — &#36;130<br />
HTC Touch Cruise — &#36;130<br />
HTC Touch Pro2 &#36;190<br />
HTC Dream — &#36;190<br />
HTC Touch Cruise 09 — &#36;200<br />
HTC MAX 4G — &#36;190<br />
HTC Touch HD2 — &#36;190<br />
HTC Touch HD — &#36;150<br />
HTC Touch 3G — &#36;150<br />
<br />
<br />
Eten:<br />
Acer Tempo DX900 ----&#36;180<br />
Eten glofiish X610 — &#36;130<br />
Eten glofiish V900 — &#36;230<br />
Eten glofiish X900 — &#36;180<br />
Eten glofiish DX900 — &#36;160<br />
Eten glofiish M810 — &#36;150<br />
Eten glofiish X650 — &#36;140<br />
Eten glofiish M800 — &#36;150<br />
<br />
Nokia:<br />
Nokia 5330 Mobile TV Edition -- &#36;225<br />
Nokia 5235 ---------- &#36;210<br />
Nokia N97 mini -----&#36;190<br />
Nokia N97 32GB --- &#36;170<br />
Nokia N900 -------&#36;190<br />
Nokia X3 -------- &#36;190<br />
Nokia X6 16GB ---- &#36;200<br />
Nokia 6760 slide--&#36;200<br />
Nokia Surge -&#36;200<br />
Nokia N98—–&#36;190<br />
Nokia N86 8MP ---&#36;170<br />
Nokia N85——&#36;175<br />
Nokia N96 16GB– &#36;150<br />
Nokia E90 — &#36;150<br />
Nokia N97 — &#36;175<br />
Nokia N79 — &#36;155<br />
Nokia E72 — &#36;170<br />
Nokia E71 — &#36;165<br />
Nokia E75 - &#36;180<br />
Nokia 8800 Sapphire Arte — &#36;200<br />
Nokia N93i — &#36;110<br />
Nokia 8600 Luna — &#36;130<br />
Nokia 5530 XpressMusic --&#36;180<br />
Nokia 5800 XPress Music—-&#36;180<br />
<br />
<br />
Sony Ericsson:<br />
Sony Ericsson XPERIA X10 mini pro -- &#36;250<br />
Sony Ericsson XPERIA X10 mini ----- &#36;230<br />
Sony Ericsson XPERIA X10 ---------- &#36;200<br />
Sony Ericsson Xperia X2 --------------- &#36;190<br />
Sony Ericsson XPERIA X1 ------------- &#36;150<br />
Sony Ericsson Aspen ------ &#36;230<br />
Sony Ericsson Vivaz Pro -- &#36;210<br />
Sony Ericsson Vivaz -- &#36;200<br />
Sony Ericsson Idou—–&#36;170<br />
Sony Ericsson Aino ----&#36;170<br />
Sony Ericsson C510 — &#36;170<br />
Sony Ericsson P1 — &#36;120<br />
Sony Ericsson W995 -&#36;180<br />
Sony Ericsson C905 — &#36;140<br />
Sony Ericsson W960 — &#36;130<br />
Sony Ericsson G900 — &#36;150<br />
Sony Ericsson C902 — &#36;130<br />
Sony Ericsson W902 — &#36;130<br />
<br />
Samsung:<br />
Samsung: S8500 Wave ---&#36;210<br />
Samsung S9110 - ----------&#36;190<br />
Samsung I8000 Omnia II —— &#36;200<br />
Samsung B7320 OmniaPRO —— &#36;190<br />
Samsung B7300 Omnia LITE——&#36;185<br />
Samsung i8910 Omnia HD ——-&#36;150<br />
Samsung i900 Omnia 16GB — &#36;140<br />
Samsung Omnia 8GB ——-&#36;130<br />
Samsung S8000 Jet ———— &#36;170<br />
Samsung T929 Memoir — &#36;190<br />
Samsung T919 Behold — &#36;180<br />
Samsung Giorgio Armani P520 — &#36;130<br />
Samsung U900 Soul — &#36;160<br />
Samsung G800 — &#36;150<br />
Samsung F490 — &#36;140<br />
<br />
LG Phones<br />
LG GW820 eXpo &#36;220<br />
LG GT540 -------- &#36;205<br />
LG GD510 Pop -- &#36;200<br />
LG GW550— &#36;190<br />
LG Incite——&#36;195<br />
LG GD910—–&#36;190<br />
LG KS500—-&#36;190<br />
LG KF900 Prada—–&#36;190<br />
LG KC780—-&#36;200<br />
LG KP500 Cookie—–&#36;210<br />
LG KC910 Renoir——&#36;210<br />
<br />
<br />
Video Games Console:<br />
Playstation:<br />
Sony PSP Go Game console --- &#36;190<br />
Sony PSP Slim Giga Bundle — &#36;100<br />
Sony Playstation 3 Slim ----&#36;180<br />
Sony PlayStation 3 80GB Motorstorm Pack — &#36;150<br />
Sony Playstation 3 60GB — &#36;140<br />
Sony PlayStation 3 40GB — &#36;120<br />
<br />
Microsoft Xbox:<br />
Xbox 360 Arcade Console -- &#36;110<br />
Xbox 360 Pro 60GB Console -- &#36;140<br />
Xbox 360 Elite 120GB Console -- &#36;160<br />
<br />
Nintendo:<br />
Nintendo DS Lite -- &#36;70<br />
Nintendo Wii Console -- &#36;125<br />
<br />
APPLE IPODS:<br />
Apple iTouch 64GB &#36;200usd<br />
Apple iTouch 32GB &#36;190usd<br />
Apple iTouch 8GB &#36;180usd<br />
Apple iPod 60GB (Video) New - &#36;145usd<br />
Apple iPod 30GB (Video) New - &#36;130usd<br />
Apple ipod 80 GB - &#36;140usd<br />
Apple iPod U2 SE 20 GB - &#36;120usd<br />
Apple iPod Photo 60 GB - &#36;120usd<br />
Apple iPod Mini 6 GB - &#36;100usd<br />
Apple iPod 20 GB - &#36;100usd<br />
Apple iPod Photo 30 GB - &#36;110usd<br />
Apple iPod Nano 4GB New! - &#36;90usd<br />
Apple iPod Nano 2GB New! - &#36;80usd<br />
<br />
<br />
<br />
<br />
APPLE LAPTOPS<br />
<br />
Apple Macbook Air……………………….&#36;480usd<br />
Apple Macbook Pro MC240LL/A .....&#36;385usd<br />
Apple Macbook Pro MB990LL/A ......&#36;400usd<br />
Apple MacBook (MA700LL/A) Mac Notebook…&#36;410usd<br />
Apple MacBook Pro (MA611LL/A) Notebook…&#36;390usd<br />
Apple MacBook (MA254LL/A) Mac Notebook…&#36;405usd<br />
Apple iBook G3 (M7698LL/A) Mac Notebook..&#36;395usd<br />
Apple MacBook Pro (MA609LL/A) Notebook…&#36;520usd<br />
Apple MacBook Pro (MA600LLA) Notebook…&#36;410usd<br />
Apple MacBook Pro (MA610LL/A) Notebook…&#36;420usd<br />
Apple Macbook Pro (885909119400) Notebook..&#36;415usd<br />
<br />
Please review our returns policy for more details below:<br />
<br />
Before you return your items, you must contact us and receive a Return Merchandise Authorization Number (RMA).<br />
<br />
Any returns sent without an RMA number will not be accepted by Xylotrade Limited® We assume all responsibility<br />
<br />
for the package until it arrives at our office.<br />
<br />
We give maximum guarantee for safe delivery of items bought from us.<br />
<br />
As soon as final conclusions are done from your side kindly contact us as soon as possible so as to lead you on how<br />
<br />
to transact with us.<br />
<br />
Thanking you in anticipation and looking forward to doing long term business with you.<br />
<br />
<br />
Online Chat Msn ID : consultant.xylo@windowslive.com<br />
<br />
Yours Sincerely<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009]]></description>
			<content:encoded><![CDATA[Xylotrade Limited is one of the leading supplier of high-end products to customers, we deal primarily in genuine and<br />
<br />
brand new electronics, all items are sourced directly from the manufacturers and carry the manufacturer’s warranty.<br />
<br />
We ship 100% of our orders the same business day. with the Registered No.05341496.<br />
<br />
We specialize in a wide range of products such as laptops, mobile phones, plasma &amp; lcd tv, mp3 &amp; mp4 players, video<br />
<br />
games console, digital cameras, dvd players (Etc) at cheap &amp; affordable prices.<br />
<br />
Order from us today and save 10% or more on all your order as we offer the promo of buy 2Unit Get Free Item Free.<br />
<br />
<br />
COMPANY FULL DETAILS.<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009<br />
-----------------------------------------------------------------<br />
<br />
Hours of operation:<br />
Monday - Thursday 8:00am - 9:00pm EST<br />
Friday 9:00am - 8:00pm EST<br />
Saturday Sunday- 9:00am - 8:00pm EST.<br />
-----------------------------------------------------------------<br />
<br />
WHY BUY FROM US?<br />
<br />
* Your privacy is assured<br />
* Our prices are second to none<br />
* Secure transaction guaranteed<br />
* We ship Monday through Saturday.<br />
* Free shipping on qualified orders<br />
* We offer reasonable discount on bulk purchases<br />
* We ship same day after confirmation of payment.<br />
* We offer a 30 day return policy and a 100% money back guarantee.<br />
<br />
Xylotrade Limited® strive to offer high-quality products at competitive prices. All of our products are brand new,<br />
<br />
never used, never rebuilt,original.<br />
<br />
All our product comes with the minimum warranty of 1 full international warranty from manufacturer.<br />
<br />
CHECK OUT FOR OUR EXTRA CHEAPER PRODUCT LIST:<br />
<br />
Apple Tablet iPad 64GB (Wi-Fi + 3G) .....&#36;350usd<br />
Apple Tablet iPad 32GB (Wi-Fi + 3G) ....&#36;290usd<br />
Apple Tablet iPad 16GB (Wi-Fi + 3G).....&#36;250usd<br />
<br />
<br />
T-Mobile Sidekick:<br />
T-Mobile Pulse ---------------&#36;160<br />
T-Mobile MyTouch 3G -----&#36;140<br />
T-Mobile G2 Touch ----------&#36;145<br />
T-Mobile Sidekick LX 2008–&#36;120<br />
T-Mobile Sidekick LX 2009–&#36;130<br />
T-Mobile Sidekick LX — &#36;90<br />
T-Mobile Shadow — &#36;105<br />
T-Mobile G1 — &#36;110<br />
T-Mobile Sidekick 3 — &#36;85<br />
Juicy Couture Sidekick 2 — &#36;75<br />
<br />
Apple iPhone:<br />
Apple iPhone 3GS 32GB- &#36;190<br />
Apple iPhone 3GS 16GB- &#36;180<br />
Apple iPhone 4GB — &#36;90<br />
Apple iPhone 8GB — &#36;110<br />
Apple iPhone 16GB — &#36;115<br />
Apple iPhone 3G 8GB — &#36;125<br />
Apple iPhone 3G 16GB — &#36;135<br />
<br />
Palm Pixi ..........&#36;215<br />
Palm Pre............&#36;180<br />
Palm Treo Pro.......&#36;190<br />
Palm Centro.........&#36;1850<br />
<br />
BlackBerry:<br />
BlackBerry Bold 9700 --- &#36;200<br />
BlackBerry Curve 8520---&#36;175<br />
BlackBerry Tour 9630 ---&#36;170<br />
Blackberry Curve 8900 — &#36;150<br />
BlackBerry Storm2 9520-&#36;200<br />
BlackBerry Storm2 9550-&#36;200<br />
Blackberry Storm 9500 — &#36;130<br />
Blackberry Storm 9530 — &#36;140<br />
Blackberry Pearl Flip 8220 — &#36;100<br />
Blackberry Bold 9000 — &#36;120<br />
Blackberry Curve 8320 — &#36;105<br />
<br />
<br />
Motorola phones<br />
Motorola XT720 MOTOROI &#36;210<br />
Motorola BACKFLIP -----&#36;215<br />
Motorola XT800 ------------&#36;205<br />
Motorola ROKR ZN50----&#36;200<br />
Motorola Karma QA1-----&#36;200<br />
Motorola L800t-----&#36;190<br />
Motorola W7 Active Edition ----&#36;180<br />
Motorola ZN300----&#36;200<br />
Motorola COCKTAIL VE70----&#36;200<br />
Motorola ZN200-----&#36;160<br />
<br />
<br />
HTC:<br />
HTC Desire ------------ &#36;245<br />
HTC HD mini ------ &#36;240<br />
HTC Legend ---- &#36;220<br />
HTC Google Nexus One &#36;220<br />
HTC Smart ---- &#36;201<br />
HTC Tattoo --- &#36;200<br />
HTC Pure ------&#36;200<br />
HTC Snap ------&#36;160<br />
HTC Hero -------&#36;180<br />
HTC Touch Pro — &#36;150<br />
HTC Touch Diamond 2 — &#36;180<br />
HTC Touch Diamond — &#36;130<br />
HTC Touch Cruise — &#36;130<br />
HTC Touch Pro2 &#36;190<br />
HTC Dream — &#36;190<br />
HTC Touch Cruise 09 — &#36;200<br />
HTC MAX 4G — &#36;190<br />
HTC Touch HD2 — &#36;190<br />
HTC Touch HD — &#36;150<br />
HTC Touch 3G — &#36;150<br />
<br />
<br />
Eten:<br />
Acer Tempo DX900 ----&#36;180<br />
Eten glofiish X610 — &#36;130<br />
Eten glofiish V900 — &#36;230<br />
Eten glofiish X900 — &#36;180<br />
Eten glofiish DX900 — &#36;160<br />
Eten glofiish M810 — &#36;150<br />
Eten glofiish X650 — &#36;140<br />
Eten glofiish M800 — &#36;150<br />
<br />
Nokia:<br />
Nokia 5330 Mobile TV Edition -- &#36;225<br />
Nokia 5235 ---------- &#36;210<br />
Nokia N97 mini -----&#36;190<br />
Nokia N97 32GB --- &#36;170<br />
Nokia N900 -------&#36;190<br />
Nokia X3 -------- &#36;190<br />
Nokia X6 16GB ---- &#36;200<br />
Nokia 6760 slide--&#36;200<br />
Nokia Surge -&#36;200<br />
Nokia N98—–&#36;190<br />
Nokia N86 8MP ---&#36;170<br />
Nokia N85——&#36;175<br />
Nokia N96 16GB– &#36;150<br />
Nokia E90 — &#36;150<br />
Nokia N97 — &#36;175<br />
Nokia N79 — &#36;155<br />
Nokia E72 — &#36;170<br />
Nokia E71 — &#36;165<br />
Nokia E75 - &#36;180<br />
Nokia 8800 Sapphire Arte — &#36;200<br />
Nokia N93i — &#36;110<br />
Nokia 8600 Luna — &#36;130<br />
Nokia 5530 XpressMusic --&#36;180<br />
Nokia 5800 XPress Music—-&#36;180<br />
<br />
<br />
Sony Ericsson:<br />
Sony Ericsson XPERIA X10 mini pro -- &#36;250<br />
Sony Ericsson XPERIA X10 mini ----- &#36;230<br />
Sony Ericsson XPERIA X10 ---------- &#36;200<br />
Sony Ericsson Xperia X2 --------------- &#36;190<br />
Sony Ericsson XPERIA X1 ------------- &#36;150<br />
Sony Ericsson Aspen ------ &#36;230<br />
Sony Ericsson Vivaz Pro -- &#36;210<br />
Sony Ericsson Vivaz -- &#36;200<br />
Sony Ericsson Idou—–&#36;170<br />
Sony Ericsson Aino ----&#36;170<br />
Sony Ericsson C510 — &#36;170<br />
Sony Ericsson P1 — &#36;120<br />
Sony Ericsson W995 -&#36;180<br />
Sony Ericsson C905 — &#36;140<br />
Sony Ericsson W960 — &#36;130<br />
Sony Ericsson G900 — &#36;150<br />
Sony Ericsson C902 — &#36;130<br />
Sony Ericsson W902 — &#36;130<br />
<br />
Samsung:<br />
Samsung: S8500 Wave ---&#36;210<br />
Samsung S9110 - ----------&#36;190<br />
Samsung I8000 Omnia II —— &#36;200<br />
Samsung B7320 OmniaPRO —— &#36;190<br />
Samsung B7300 Omnia LITE——&#36;185<br />
Samsung i8910 Omnia HD ——-&#36;150<br />
Samsung i900 Omnia 16GB — &#36;140<br />
Samsung Omnia 8GB ——-&#36;130<br />
Samsung S8000 Jet ———— &#36;170<br />
Samsung T929 Memoir — &#36;190<br />
Samsung T919 Behold — &#36;180<br />
Samsung Giorgio Armani P520 — &#36;130<br />
Samsung U900 Soul — &#36;160<br />
Samsung G800 — &#36;150<br />
Samsung F490 — &#36;140<br />
<br />
LG Phones<br />
LG GW820 eXpo &#36;220<br />
LG GT540 -------- &#36;205<br />
LG GD510 Pop -- &#36;200<br />
LG GW550— &#36;190<br />
LG Incite——&#36;195<br />
LG GD910—–&#36;190<br />
LG KS500—-&#36;190<br />
LG KF900 Prada—–&#36;190<br />
LG KC780—-&#36;200<br />
LG KP500 Cookie—–&#36;210<br />
LG KC910 Renoir——&#36;210<br />
<br />
<br />
Video Games Console:<br />
Playstation:<br />
Sony PSP Go Game console --- &#36;190<br />
Sony PSP Slim Giga Bundle — &#36;100<br />
Sony Playstation 3 Slim ----&#36;180<br />
Sony PlayStation 3 80GB Motorstorm Pack — &#36;150<br />
Sony Playstation 3 60GB — &#36;140<br />
Sony PlayStation 3 40GB — &#36;120<br />
<br />
Microsoft Xbox:<br />
Xbox 360 Arcade Console -- &#36;110<br />
Xbox 360 Pro 60GB Console -- &#36;140<br />
Xbox 360 Elite 120GB Console -- &#36;160<br />
<br />
Nintendo:<br />
Nintendo DS Lite -- &#36;70<br />
Nintendo Wii Console -- &#36;125<br />
<br />
APPLE IPODS:<br />
Apple iTouch 64GB &#36;200usd<br />
Apple iTouch 32GB &#36;190usd<br />
Apple iTouch 8GB &#36;180usd<br />
Apple iPod 60GB (Video) New - &#36;145usd<br />
Apple iPod 30GB (Video) New - &#36;130usd<br />
Apple ipod 80 GB - &#36;140usd<br />
Apple iPod U2 SE 20 GB - &#36;120usd<br />
Apple iPod Photo 60 GB - &#36;120usd<br />
Apple iPod Mini 6 GB - &#36;100usd<br />
Apple iPod 20 GB - &#36;100usd<br />
Apple iPod Photo 30 GB - &#36;110usd<br />
Apple iPod Nano 4GB New! - &#36;90usd<br />
Apple iPod Nano 2GB New! - &#36;80usd<br />
<br />
<br />
<br />
<br />
APPLE LAPTOPS<br />
<br />
Apple Macbook Air……………………….&#36;480usd<br />
Apple Macbook Pro MC240LL/A .....&#36;385usd<br />
Apple Macbook Pro MB990LL/A ......&#36;400usd<br />
Apple MacBook (MA700LL/A) Mac Notebook…&#36;410usd<br />
Apple MacBook Pro (MA611LL/A) Notebook…&#36;390usd<br />
Apple MacBook (MA254LL/A) Mac Notebook…&#36;405usd<br />
Apple iBook G3 (M7698LL/A) Mac Notebook..&#36;395usd<br />
Apple MacBook Pro (MA609LL/A) Notebook…&#36;520usd<br />
Apple MacBook Pro (MA600LLA) Notebook…&#36;410usd<br />
Apple MacBook Pro (MA610LL/A) Notebook…&#36;420usd<br />
Apple Macbook Pro (885909119400) Notebook..&#36;415usd<br />
<br />
Please review our returns policy for more details below:<br />
<br />
Before you return your items, you must contact us and receive a Return Merchandise Authorization Number (RMA).<br />
<br />
Any returns sent without an RMA number will not be accepted by Xylotrade Limited® We assume all responsibility<br />
<br />
for the package until it arrives at our office.<br />
<br />
We give maximum guarantee for safe delivery of items bought from us.<br />
<br />
As soon as final conclusions are done from your side kindly contact us as soon as possible so as to lead you on how<br />
<br />
to transact with us.<br />
<br />
Thanking you in anticipation and looking forward to doing long term business with you.<br />
<br />
<br />
Online Chat Msn ID : consultant.xylo@windowslive.com<br />
<br />
Yours Sincerely<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Buy Apple iPhone 3GS 32GB $190,Apple Tablet iPad $250,LG EXpo $220.]]></title>
			<link>http://coding-central.info/showthread.php?tid=1198</link>
			<pubDate>Thu, 11 Mar 2010 02:31:05 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1198</guid>
			<description><![CDATA[Xylotrade Limited is one of the leading supplier of high-end products to customers, we deal primarily in genuine and<br />
<br />
brand new electronics, all items are sourced directly from the manufacturers and carry the manufacturer’s warranty.<br />
<br />
We ship 100% of our orders the same business day. with the Registered No.05341496.<br />
<br />
We specialize in a wide range of products such as laptops, mobile phones, plasma &amp; lcd tv, mp3 &amp; mp4 players, video<br />
<br />
games console, digital cameras, dvd players (Etc) at cheap &amp; affordable prices.<br />
<br />
Order from us today and save 10% or more on all your order as we offer the promo of buy 2Unit Get Free Item Free.<br />
<br />
<br />
COMPANY FULL DETAILS.<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009<br />
-----------------------------------------------------------------<br />
<br />
Hours of operation:<br />
Monday - Thursday 8:00am - 9:00pm EST<br />
Friday 9:00am - 8:00pm EST<br />
Saturday Sunday- 9:00am - 8:00pm EST.<br />
-----------------------------------------------------------------<br />
<br />
WHY BUY FROM US?<br />
<br />
* Your privacy is assured<br />
* Our prices are second to none<br />
* Secure transaction guaranteed<br />
* We ship Monday through Saturday.<br />
* Free shipping on qualified orders<br />
* We offer reasonable discount on bulk purchases<br />
* We ship same day after confirmation of payment.<br />
* We offer a 30 day return policy and a 100% money back guarantee.<br />
<br />
Xylotrade Limited® strive to offer high-quality products at competitive prices. All of our products are brand new,<br />
<br />
never used, never rebuilt,original.<br />
<br />
All our product comes with the minimum warranty of 1 full international warranty from manufacturer.<br />
<br />
CHECK OUT FOR OUR EXTRA CHEAPER PRODUCT LIST:<br />
<br />
Apple Tablet iPad 64GB (Wi-Fi + 3G) .....&#36;350usd<br />
Apple Tablet iPad 32GB (Wi-Fi + 3G) ....&#36;290usd<br />
Apple Tablet iPad 16GB (Wi-Fi + 3G).....&#36;250usd<br />
<br />
<br />
T-Mobile Sidekick:<br />
T-Mobile Pulse ---------------&#36;160<br />
T-Mobile MyTouch 3G -----&#36;140<br />
T-Mobile G2 Touch ----------&#36;145<br />
T-Mobile Sidekick LX 2008–&#36;120<br />
T-Mobile Sidekick LX 2009–&#36;130<br />
T-Mobile Sidekick LX — &#36;90<br />
T-Mobile Shadow — &#36;105<br />
T-Mobile G1 — &#36;110<br />
T-Mobile Sidekick 3 — &#36;85<br />
Juicy Couture Sidekick 2 — &#36;75<br />
<br />
Apple iPhone:<br />
Apple iPhone 3GS 32GB- &#36;190<br />
Apple iPhone 3GS 16GB- &#36;180<br />
Apple iPhone 4GB — &#36;90<br />
Apple iPhone 8GB — &#36;110<br />
Apple iPhone 16GB — &#36;115<br />
Apple iPhone 3G 8GB — &#36;125<br />
Apple iPhone 3G 16GB — &#36;135<br />
<br />
Palm Pixi ..........&#36;215<br />
Palm Pre............&#36;180<br />
Palm Treo Pro.......&#36;190<br />
Palm Centro.........&#36;1850<br />
<br />
BlackBerry:<br />
BlackBerry Bold 9700 --- &#36;200<br />
BlackBerry Curve 8520---&#36;175<br />
BlackBerry Tour 9630 ---&#36;170<br />
Blackberry Curve 8900 — &#36;150<br />
BlackBerry Storm2 9520-&#36;200<br />
BlackBerry Storm2 9550-&#36;200<br />
Blackberry Storm 9500 — &#36;130<br />
Blackberry Storm 9530 — &#36;140<br />
Blackberry Pearl Flip 8220 — &#36;100<br />
Blackberry Bold 9000 — &#36;120<br />
Blackberry Curve 8320 — &#36;105<br />
<br />
<br />
Motorola phones<br />
Motorola XT720 MOTOROI &#36;210<br />
Motorola BACKFLIP -----&#36;215<br />
Motorola XT800 ------------&#36;205<br />
Motorola ROKR ZN50----&#36;200<br />
Motorola Karma QA1-----&#36;200<br />
Motorola L800t-----&#36;190<br />
Motorola W7 Active Edition ----&#36;180<br />
Motorola ZN300----&#36;200<br />
Motorola COCKTAIL VE70----&#36;200<br />
Motorola ZN200-----&#36;160<br />
<br />
<br />
HTC:<br />
HTC Desire ------------ &#36;245<br />
HTC HD mini ------ &#36;240<br />
HTC Legend ---- &#36;220<br />
HTC Google Nexus One &#36;220<br />
HTC Smart ---- &#36;201<br />
HTC Tattoo --- &#36;200<br />
HTC Pure ------&#36;200<br />
HTC Snap ------&#36;160<br />
HTC Hero -------&#36;180<br />
HTC Touch Pro — &#36;150<br />
HTC Touch Diamond 2 — &#36;180<br />
HTC Touch Diamond — &#36;130<br />
HTC Touch Cruise — &#36;130<br />
HTC Touch Pro2 &#36;190<br />
HTC Dream — &#36;190<br />
HTC Touch Cruise 09 — &#36;200<br />
HTC MAX 4G — &#36;190<br />
HTC Touch HD2 — &#36;190<br />
HTC Touch HD — &#36;150<br />
HTC Touch 3G — &#36;150<br />
<br />
<br />
Eten:<br />
Acer Tempo DX900 ----&#36;180<br />
Eten glofiish X610 — &#36;130<br />
Eten glofiish V900 — &#36;230<br />
Eten glofiish X900 — &#36;180<br />
Eten glofiish DX900 — &#36;160<br />
Eten glofiish M810 — &#36;150<br />
Eten glofiish X650 — &#36;140<br />
Eten glofiish M800 — &#36;150<br />
<br />
Nokia:<br />
Nokia 5330 Mobile TV Edition -- &#36;225<br />
Nokia 5235 ---------- &#36;210<br />
Nokia N97 mini -----&#36;190<br />
Nokia N97 32GB --- &#36;170<br />
Nokia N900 -------&#36;190<br />
Nokia X3 -------- &#36;190<br />
Nokia X6 16GB ---- &#36;200<br />
Nokia 6760 slide--&#36;200<br />
Nokia Surge -&#36;200<br />
Nokia N98—–&#36;190<br />
Nokia N86 8MP ---&#36;170<br />
Nokia N85——&#36;175<br />
Nokia N96 16GB– &#36;150<br />
Nokia E90 — &#36;150<br />
Nokia N97 — &#36;175<br />
Nokia N79 — &#36;155<br />
Nokia E72 — &#36;170<br />
Nokia E71 — &#36;165<br />
Nokia E75 - &#36;180<br />
Nokia 8800 Sapphire Arte — &#36;200<br />
Nokia N93i — &#36;110<br />
Nokia 8600 Luna — &#36;130<br />
Nokia 5530 XpressMusic --&#36;180<br />
Nokia 5800 XPress Music—-&#36;180<br />
<br />
<br />
Sony Ericsson:<br />
Sony Ericsson XPERIA X10 mini pro -- &#36;250<br />
Sony Ericsson XPERIA X10 mini ----- &#36;230<br />
Sony Ericsson XPERIA X10 ---------- &#36;200<br />
Sony Ericsson Xperia X2 --------------- &#36;190<br />
Sony Ericsson XPERIA X1 ------------- &#36;150<br />
Sony Ericsson Aspen ------ &#36;230<br />
Sony Ericsson Vivaz Pro -- &#36;210<br />
Sony Ericsson Vivaz -- &#36;200<br />
Sony Ericsson Idou—–&#36;170<br />
Sony Ericsson Aino ----&#36;170<br />
Sony Ericsson C510 — &#36;170<br />
Sony Ericsson P1 — &#36;120<br />
Sony Ericsson W995 -&#36;180<br />
Sony Ericsson C905 — &#36;140<br />
Sony Ericsson W960 — &#36;130<br />
Sony Ericsson G900 — &#36;150<br />
Sony Ericsson C902 — &#36;130<br />
Sony Ericsson W902 — &#36;130<br />
<br />
Samsung:<br />
Samsung: S8500 Wave ---&#36;210<br />
Samsung S9110 - ----------&#36;190<br />
Samsung I8000 Omnia II —— &#36;200<br />
Samsung B7320 OmniaPRO —— &#36;190<br />
Samsung B7300 Omnia LITE——&#36;185<br />
Samsung i8910 Omnia HD ——-&#36;150<br />
Samsung i900 Omnia 16GB — &#36;140<br />
Samsung Omnia 8GB ——-&#36;130<br />
Samsung S8000 Jet ———— &#36;170<br />
Samsung T929 Memoir — &#36;190<br />
Samsung T919 Behold — &#36;180<br />
Samsung Giorgio Armani P520 — &#36;130<br />
Samsung U900 Soul — &#36;160<br />
Samsung G800 — &#36;150<br />
Samsung F490 — &#36;140<br />
<br />
LG Phones<br />
LG GW820 eXpo &#36;220<br />
LG GT540 -------- &#36;205<br />
LG GD510 Pop -- &#36;200<br />
LG GW550— &#36;190<br />
LG Incite——&#36;195<br />
LG GD910—–&#36;190<br />
LG KS500—-&#36;190<br />
LG KF900 Prada—–&#36;190<br />
LG KC780—-&#36;200<br />
LG KP500 Cookie—–&#36;210<br />
LG KC910 Renoir——&#36;210<br />
<br />
<br />
Video Games Console:<br />
Playstation:<br />
Sony PSP Go Game console --- &#36;190<br />
Sony PSP Slim Giga Bundle — &#36;100<br />
Sony Playstation 3 Slim ----&#36;180<br />
Sony PlayStation 3 80GB Motorstorm Pack — &#36;150<br />
Sony Playstation 3 60GB — &#36;140<br />
Sony PlayStation 3 40GB — &#36;120<br />
<br />
Microsoft Xbox:<br />
Xbox 360 Arcade Console -- &#36;110<br />
Xbox 360 Pro 60GB Console -- &#36;140<br />
Xbox 360 Elite 120GB Console -- &#36;160<br />
<br />
Nintendo:<br />
Nintendo DS Lite -- &#36;70<br />
Nintendo Wii Console -- &#36;125<br />
<br />
APPLE IPODS:<br />
Apple iTouch 64GB &#36;200usd<br />
Apple iTouch 32GB &#36;190usd<br />
Apple iTouch 8GB &#36;180usd<br />
Apple iPod 60GB (Video) New - &#36;145usd<br />
Apple iPod 30GB (Video) New - &#36;130usd<br />
Apple ipod 80 GB - &#36;140usd<br />
Apple iPod U2 SE 20 GB - &#36;120usd<br />
Apple iPod Photo 60 GB - &#36;120usd<br />
Apple iPod Mini 6 GB - &#36;100usd<br />
Apple iPod 20 GB - &#36;100usd<br />
Apple iPod Photo 30 GB - &#36;110usd<br />
Apple iPod Nano 4GB New! - &#36;90usd<br />
Apple iPod Nano 2GB New! - &#36;80usd<br />
<br />
<br />
<br />
<br />
APPLE LAPTOPS<br />
<br />
Apple Macbook Air……………………….&#36;480usd<br />
Apple Macbook Pro MC240LL/A .....&#36;385usd<br />
Apple Macbook Pro MB990LL/A ......&#36;400usd<br />
Apple MacBook (MA700LL/A) Mac Notebook…&#36;410usd<br />
Apple MacBook Pro (MA611LL/A) Notebook…&#36;390usd<br />
Apple MacBook (MA254LL/A) Mac Notebook…&#36;405usd<br />
Apple iBook G3 (M7698LL/A) Mac Notebook..&#36;395usd<br />
Apple MacBook Pro (MA609LL/A) Notebook…&#36;520usd<br />
Apple MacBook Pro (MA600LLA) Notebook…&#36;410usd<br />
Apple MacBook Pro (MA610LL/A) Notebook…&#36;420usd<br />
Apple Macbook Pro (885909119400) Notebook..&#36;415usd<br />
<br />
Please review our returns policy for more details below:<br />
<br />
Before you return your items, you must contact us and receive a Return Merchandise Authorization Number (RMA).<br />
<br />
Any returns sent without an RMA number will not be accepted by Xylotrade Limited® We assume all responsibility<br />
<br />
for the package until it arrives at our office.<br />
<br />
We give maximum guarantee for safe delivery of items bought from us.<br />
<br />
As soon as final conclusions are done from your side kindly contact us as soon as possible so as to lead you on how<br />
<br />
to transact with us.<br />
<br />
Thanking you in anticipation and looking forward to doing long term business with you.<br />
<br />
<br />
Online Chat Msn ID : consultant.xylo@windowslive.com<br />
<br />
Yours Sincerely<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009]]></description>
			<content:encoded><![CDATA[Xylotrade Limited is one of the leading supplier of high-end products to customers, we deal primarily in genuine and<br />
<br />
brand new electronics, all items are sourced directly from the manufacturers and carry the manufacturer’s warranty.<br />
<br />
We ship 100% of our orders the same business day. with the Registered No.05341496.<br />
<br />
We specialize in a wide range of products such as laptops, mobile phones, plasma &amp; lcd tv, mp3 &amp; mp4 players, video<br />
<br />
games console, digital cameras, dvd players (Etc) at cheap &amp; affordable prices.<br />
<br />
Order from us today and save 10% or more on all your order as we offer the promo of buy 2Unit Get Free Item Free.<br />
<br />
<br />
COMPANY FULL DETAILS.<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009<br />
-----------------------------------------------------------------<br />
<br />
Hours of operation:<br />
Monday - Thursday 8:00am - 9:00pm EST<br />
Friday 9:00am - 8:00pm EST<br />
Saturday Sunday- 9:00am - 8:00pm EST.<br />
-----------------------------------------------------------------<br />
<br />
WHY BUY FROM US?<br />
<br />
* Your privacy is assured<br />
* Our prices are second to none<br />
* Secure transaction guaranteed<br />
* We ship Monday through Saturday.<br />
* Free shipping on qualified orders<br />
* We offer reasonable discount on bulk purchases<br />
* We ship same day after confirmation of payment.<br />
* We offer a 30 day return policy and a 100% money back guarantee.<br />
<br />
Xylotrade Limited® strive to offer high-quality products at competitive prices. All of our products are brand new,<br />
<br />
never used, never rebuilt,original.<br />
<br />
All our product comes with the minimum warranty of 1 full international warranty from manufacturer.<br />
<br />
CHECK OUT FOR OUR EXTRA CHEAPER PRODUCT LIST:<br />
<br />
Apple Tablet iPad 64GB (Wi-Fi + 3G) .....&#36;350usd<br />
Apple Tablet iPad 32GB (Wi-Fi + 3G) ....&#36;290usd<br />
Apple Tablet iPad 16GB (Wi-Fi + 3G).....&#36;250usd<br />
<br />
<br />
T-Mobile Sidekick:<br />
T-Mobile Pulse ---------------&#36;160<br />
T-Mobile MyTouch 3G -----&#36;140<br />
T-Mobile G2 Touch ----------&#36;145<br />
T-Mobile Sidekick LX 2008–&#36;120<br />
T-Mobile Sidekick LX 2009–&#36;130<br />
T-Mobile Sidekick LX — &#36;90<br />
T-Mobile Shadow — &#36;105<br />
T-Mobile G1 — &#36;110<br />
T-Mobile Sidekick 3 — &#36;85<br />
Juicy Couture Sidekick 2 — &#36;75<br />
<br />
Apple iPhone:<br />
Apple iPhone 3GS 32GB- &#36;190<br />
Apple iPhone 3GS 16GB- &#36;180<br />
Apple iPhone 4GB — &#36;90<br />
Apple iPhone 8GB — &#36;110<br />
Apple iPhone 16GB — &#36;115<br />
Apple iPhone 3G 8GB — &#36;125<br />
Apple iPhone 3G 16GB — &#36;135<br />
<br />
Palm Pixi ..........&#36;215<br />
Palm Pre............&#36;180<br />
Palm Treo Pro.......&#36;190<br />
Palm Centro.........&#36;1850<br />
<br />
BlackBerry:<br />
BlackBerry Bold 9700 --- &#36;200<br />
BlackBerry Curve 8520---&#36;175<br />
BlackBerry Tour 9630 ---&#36;170<br />
Blackberry Curve 8900 — &#36;150<br />
BlackBerry Storm2 9520-&#36;200<br />
BlackBerry Storm2 9550-&#36;200<br />
Blackberry Storm 9500 — &#36;130<br />
Blackberry Storm 9530 — &#36;140<br />
Blackberry Pearl Flip 8220 — &#36;100<br />
Blackberry Bold 9000 — &#36;120<br />
Blackberry Curve 8320 — &#36;105<br />
<br />
<br />
Motorola phones<br />
Motorola XT720 MOTOROI &#36;210<br />
Motorola BACKFLIP -----&#36;215<br />
Motorola XT800 ------------&#36;205<br />
Motorola ROKR ZN50----&#36;200<br />
Motorola Karma QA1-----&#36;200<br />
Motorola L800t-----&#36;190<br />
Motorola W7 Active Edition ----&#36;180<br />
Motorola ZN300----&#36;200<br />
Motorola COCKTAIL VE70----&#36;200<br />
Motorola ZN200-----&#36;160<br />
<br />
<br />
HTC:<br />
HTC Desire ------------ &#36;245<br />
HTC HD mini ------ &#36;240<br />
HTC Legend ---- &#36;220<br />
HTC Google Nexus One &#36;220<br />
HTC Smart ---- &#36;201<br />
HTC Tattoo --- &#36;200<br />
HTC Pure ------&#36;200<br />
HTC Snap ------&#36;160<br />
HTC Hero -------&#36;180<br />
HTC Touch Pro — &#36;150<br />
HTC Touch Diamond 2 — &#36;180<br />
HTC Touch Diamond — &#36;130<br />
HTC Touch Cruise — &#36;130<br />
HTC Touch Pro2 &#36;190<br />
HTC Dream — &#36;190<br />
HTC Touch Cruise 09 — &#36;200<br />
HTC MAX 4G — &#36;190<br />
HTC Touch HD2 — &#36;190<br />
HTC Touch HD — &#36;150<br />
HTC Touch 3G — &#36;150<br />
<br />
<br />
Eten:<br />
Acer Tempo DX900 ----&#36;180<br />
Eten glofiish X610 — &#36;130<br />
Eten glofiish V900 — &#36;230<br />
Eten glofiish X900 — &#36;180<br />
Eten glofiish DX900 — &#36;160<br />
Eten glofiish M810 — &#36;150<br />
Eten glofiish X650 — &#36;140<br />
Eten glofiish M800 — &#36;150<br />
<br />
Nokia:<br />
Nokia 5330 Mobile TV Edition -- &#36;225<br />
Nokia 5235 ---------- &#36;210<br />
Nokia N97 mini -----&#36;190<br />
Nokia N97 32GB --- &#36;170<br />
Nokia N900 -------&#36;190<br />
Nokia X3 -------- &#36;190<br />
Nokia X6 16GB ---- &#36;200<br />
Nokia 6760 slide--&#36;200<br />
Nokia Surge -&#36;200<br />
Nokia N98—–&#36;190<br />
Nokia N86 8MP ---&#36;170<br />
Nokia N85——&#36;175<br />
Nokia N96 16GB– &#36;150<br />
Nokia E90 — &#36;150<br />
Nokia N97 — &#36;175<br />
Nokia N79 — &#36;155<br />
Nokia E72 — &#36;170<br />
Nokia E71 — &#36;165<br />
Nokia E75 - &#36;180<br />
Nokia 8800 Sapphire Arte — &#36;200<br />
Nokia N93i — &#36;110<br />
Nokia 8600 Luna — &#36;130<br />
Nokia 5530 XpressMusic --&#36;180<br />
Nokia 5800 XPress Music—-&#36;180<br />
<br />
<br />
Sony Ericsson:<br />
Sony Ericsson XPERIA X10 mini pro -- &#36;250<br />
Sony Ericsson XPERIA X10 mini ----- &#36;230<br />
Sony Ericsson XPERIA X10 ---------- &#36;200<br />
Sony Ericsson Xperia X2 --------------- &#36;190<br />
Sony Ericsson XPERIA X1 ------------- &#36;150<br />
Sony Ericsson Aspen ------ &#36;230<br />
Sony Ericsson Vivaz Pro -- &#36;210<br />
Sony Ericsson Vivaz -- &#36;200<br />
Sony Ericsson Idou—–&#36;170<br />
Sony Ericsson Aino ----&#36;170<br />
Sony Ericsson C510 — &#36;170<br />
Sony Ericsson P1 — &#36;120<br />
Sony Ericsson W995 -&#36;180<br />
Sony Ericsson C905 — &#36;140<br />
Sony Ericsson W960 — &#36;130<br />
Sony Ericsson G900 — &#36;150<br />
Sony Ericsson C902 — &#36;130<br />
Sony Ericsson W902 — &#36;130<br />
<br />
Samsung:<br />
Samsung: S8500 Wave ---&#36;210<br />
Samsung S9110 - ----------&#36;190<br />
Samsung I8000 Omnia II —— &#36;200<br />
Samsung B7320 OmniaPRO —— &#36;190<br />
Samsung B7300 Omnia LITE——&#36;185<br />
Samsung i8910 Omnia HD ——-&#36;150<br />
Samsung i900 Omnia 16GB — &#36;140<br />
Samsung Omnia 8GB ——-&#36;130<br />
Samsung S8000 Jet ———— &#36;170<br />
Samsung T929 Memoir — &#36;190<br />
Samsung T919 Behold — &#36;180<br />
Samsung Giorgio Armani P520 — &#36;130<br />
Samsung U900 Soul — &#36;160<br />
Samsung G800 — &#36;150<br />
Samsung F490 — &#36;140<br />
<br />
LG Phones<br />
LG GW820 eXpo &#36;220<br />
LG GT540 -------- &#36;205<br />
LG GD510 Pop -- &#36;200<br />
LG GW550— &#36;190<br />
LG Incite——&#36;195<br />
LG GD910—–&#36;190<br />
LG KS500—-&#36;190<br />
LG KF900 Prada—–&#36;190<br />
LG KC780—-&#36;200<br />
LG KP500 Cookie—–&#36;210<br />
LG KC910 Renoir——&#36;210<br />
<br />
<br />
Video Games Console:<br />
Playstation:<br />
Sony PSP Go Game console --- &#36;190<br />
Sony PSP Slim Giga Bundle — &#36;100<br />
Sony Playstation 3 Slim ----&#36;180<br />
Sony PlayStation 3 80GB Motorstorm Pack — &#36;150<br />
Sony Playstation 3 60GB — &#36;140<br />
Sony PlayStation 3 40GB — &#36;120<br />
<br />
Microsoft Xbox:<br />
Xbox 360 Arcade Console -- &#36;110<br />
Xbox 360 Pro 60GB Console -- &#36;140<br />
Xbox 360 Elite 120GB Console -- &#36;160<br />
<br />
Nintendo:<br />
Nintendo DS Lite -- &#36;70<br />
Nintendo Wii Console -- &#36;125<br />
<br />
APPLE IPODS:<br />
Apple iTouch 64GB &#36;200usd<br />
Apple iTouch 32GB &#36;190usd<br />
Apple iTouch 8GB &#36;180usd<br />
Apple iPod 60GB (Video) New - &#36;145usd<br />
Apple iPod 30GB (Video) New - &#36;130usd<br />
Apple ipod 80 GB - &#36;140usd<br />
Apple iPod U2 SE 20 GB - &#36;120usd<br />
Apple iPod Photo 60 GB - &#36;120usd<br />
Apple iPod Mini 6 GB - &#36;100usd<br />
Apple iPod 20 GB - &#36;100usd<br />
Apple iPod Photo 30 GB - &#36;110usd<br />
Apple iPod Nano 4GB New! - &#36;90usd<br />
Apple iPod Nano 2GB New! - &#36;80usd<br />
<br />
<br />
<br />
<br />
APPLE LAPTOPS<br />
<br />
Apple Macbook Air……………………….&#36;480usd<br />
Apple Macbook Pro MC240LL/A .....&#36;385usd<br />
Apple Macbook Pro MB990LL/A ......&#36;400usd<br />
Apple MacBook (MA700LL/A) Mac Notebook…&#36;410usd<br />
Apple MacBook Pro (MA611LL/A) Notebook…&#36;390usd<br />
Apple MacBook (MA254LL/A) Mac Notebook…&#36;405usd<br />
Apple iBook G3 (M7698LL/A) Mac Notebook..&#36;395usd<br />
Apple MacBook Pro (MA609LL/A) Notebook…&#36;520usd<br />
Apple MacBook Pro (MA600LLA) Notebook…&#36;410usd<br />
Apple MacBook Pro (MA610LL/A) Notebook…&#36;420usd<br />
Apple Macbook Pro (885909119400) Notebook..&#36;415usd<br />
<br />
Please review our returns policy for more details below:<br />
<br />
Before you return your items, you must contact us and receive a Return Merchandise Authorization Number (RMA).<br />
<br />
Any returns sent without an RMA number will not be accepted by Xylotrade Limited® We assume all responsibility<br />
<br />
for the package until it arrives at our office.<br />
<br />
We give maximum guarantee for safe delivery of items bought from us.<br />
<br />
As soon as final conclusions are done from your side kindly contact us as soon as possible so as to lead you on how<br />
<br />
to transact with us.<br />
<br />
Thanking you in anticipation and looking forward to doing long term business with you.<br />
<br />
<br />
Online Chat Msn ID : consultant.xylo@windowslive.com<br />
<br />
Yours Sincerely<br />
<br />
Contact Name : Kyle Charlie<br />
Company Name : Xylotrade Limited®<br />
Email Us At : consultant.xylo@windowslive.com<br />
Registered No.05341496<br />
Incorporation Date: 25-01-2005<br />
Status: Active<br />
Last Accounts Filed up to: 31-01-2009]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Digitamil]]></title>
			<link>http://coding-central.info/showthread.php?tid=1197</link>
			<pubDate>Wed, 10 Mar 2010 22:21:19 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1197</guid>
			<description><![CDATA[Digitamil.com all free stuff available]]></description>
			<content:encoded><![CDATA[Digitamil.com all free stuff available]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Earn Money And Convert your blog into Website]]></title>
			<link>http://coding-central.info/showthread.php?tid=1196</link>
			<pubDate>Wed, 10 Mar 2010 13:56:37 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1196</guid>
			<description><![CDATA[<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/?saref=6sa5754"&gt;&lt;img src="http://hyperwebenable.com/images/website1.gif" alt="Visit this site."&gt;&lt;/a&gt;</code></div></div>
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/?saref=6sa5754"&gt;www.hyperwebenable.com&lt;/a&gt;</code></div></div>
<br />
This site enable you to convert your popular blog into website <br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/index.php?saref=6sa5754"&gt;Get free website for your blog&lt;/a&gt;</code></div></div>
<br />
So now what are you wait for <br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/index.php?saref=6sa5754"&gt;&lt;img src="http://hyperwebenable.com/images/website2.gif" alt="Visit this site."&gt;&lt;/a&gt;</code></div></div>
<br />
It also pay you 1&#36; for one reference and the payout is 10&#36;<br />
So you need only 10 Reference for Your 1st Payment[/code&#93;]]></description>
			<content:encoded><![CDATA[<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/?saref=6sa5754"&gt;&lt;img src="http://hyperwebenable.com/images/website1.gif" alt="Visit this site."&gt;&lt;/a&gt;</code></div></div>
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/?saref=6sa5754"&gt;www.hyperwebenable.com&lt;/a&gt;</code></div></div>
<br />
This site enable you to convert your popular blog into website <br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/index.php?saref=6sa5754"&gt;Get free website for your blog&lt;/a&gt;</code></div></div>
<br />
So now what are you wait for <br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;a href="http://hyperwebenable.com/index.php?saref=6sa5754"&gt;&lt;img src="http://hyperwebenable.com/images/website2.gif" alt="Visit this site."&gt;&lt;/a&gt;</code></div></div>
<br />
It also pay you 1&#36; for one reference and the payout is 10&#36;<br />
So you need only 10 Reference for Your 1st Payment[/code]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NITHYANANTHA &#x26; NEW EXCLUSIVE SEX VIDEOS,GAMES,PHOTOS]]></title>
			<link>http://coding-central.info/showthread.php?tid=1195</link>
			<pubDate>Wed, 10 Mar 2010 04:48:45 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1195</guid>
			<description><![CDATA[NITHYANANTHA &amp; NEW EXCLUSIVE SEX VIDEOS,GAMES,PHOTOS And much more @ <a href="http://desiking.in" target="_blank">http://desiking.in</a>]]></description>
			<content:encoded><![CDATA[NITHYANANTHA &amp; NEW EXCLUSIVE SEX VIDEOS,GAMES,PHOTOS And much more @ <a href="http://desiking.in" target="_blank">http://desiking.in</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Top.Wap4Mob.Com]]></title>
			<link>http://coding-central.info/showthread.php?tid=1192</link>
			<pubDate>Wed, 10 Mar 2010 02:57:14 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1192</guid>
			<description><![CDATA[Hi friends ,<br />
add your site at <a href="http://top.wap4mob.com" target="_blank">http://top.wap4mob.com</a>]]></description>
			<content:encoded><![CDATA[Hi friends ,<br />
add your site at <a href="http://top.wap4mob.com" target="_blank">http://top.wap4mob.com</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Script like http://php4m.info]]></title>
			<link>http://coding-central.info/showthread.php?tid=1191</link>
			<pubDate>Wed, 10 Mar 2010 01:38:13 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1191</guid>
			<description><![CDATA[Some one help me 2 find this script]]></description>
			<content:encoded><![CDATA[Some one help me 2 find this script]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Unlimited Foldar script like http://download.music.com.bd]]></title>
			<link>http://coding-central.info/showthread.php?tid=1190</link>
			<pubDate>Wed, 10 Mar 2010 01:13:47 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1190</guid>
			<description><![CDATA[Please someone help me.I need a unlimeted foldar script like <a href="http://download.music.com.bd/" target="_blank">http://download.music.com.bd/</a> and <a href="http://www.pagolmon.com/music/index.php?option=com_content&amp;view=article&amp;id=89:suzana-ansar&amp;catid=40:latest-album&amp;Itemid=73.i" target="_blank">http://www.pagolmon.com/music/index.php?...http://www.pagolmon.com/music/index.php?option=com_content&#x26;view=article&#x26;id=89:suzana-ansar&#x26;catid=40:latest-album&#x26;I</a> need this foldar script for build my mp3 download site.]]></description>
			<content:encoded><![CDATA[Please someone help me.I need a unlimeted foldar script like <a href="http://download.music.com.bd/" target="_blank">http://download.music.com.bd/</a> and <a href="http://www.pagolmon.com/music/index.php?option=com_content&amp;view=article&amp;id=89:suzana-ansar&amp;catid=40:latest-album&amp;Itemid=73.i" target="_blank">http://www.pagolmon.com/music/index.php?...http://www.pagolmon.com/music/index.php?option=com_content&view=article&id=89:suzana-ansar&catid=40:latest-album&I</a> need this foldar script for build my mp3 download site.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hello Friends .]]></title>
			<link>http://coding-central.info/showthread.php?tid=1194</link>
			<pubDate>Tue, 09 Mar 2010 23:25:09 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1194</guid>
			<description><![CDATA[Hello,<br />
<br />
hello friends I am from India and i m a owing a website of tour and travel and i am interested to change the look of that website and putting in some flash animations . So 1 of my friends told me that forums can be good place to discuss these kind of things . So i am here ;-) <br />
<br />
and yeah i recently came across this website <a href="http://spcits.com/" target="_blank">spcits.com</a> these guys are really providing some amazing <a href="http://spcits.com/Free.php" target="_blank">free services for seo , security and auditing</a> best thing i liked about them was their dedication. <br />
<br />
and yes I am looking for good animation designer specifically 3d . It won't be affordable for me to approach professional companies. It will be really nice if i can get in touch of any free lancer . <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> <br />
<br />
I am sure i will get lot of help from this forum and solutions to my problems.<br />
<br />
Karan]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
hello friends I am from India and i m a owing a website of tour and travel and i am interested to change the look of that website and putting in some flash animations . So 1 of my friends told me that forums can be good place to discuss these kind of things . So i am here ;-) <br />
<br />
and yeah i recently came across this website <a href="http://spcits.com/" target="_blank">spcits.com</a> these guys are really providing some amazing <a href="http://spcits.com/Free.php" target="_blank">free services for seo , security and auditing</a> best thing i liked about them was their dedication. <br />
<br />
and yes I am looking for good animation designer specifically 3d . It won't be affordable for me to approach professional companies. It will be really nice if i can get in touch of any free lancer . <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> <br />
<br />
I am sure i will get lot of help from this forum and solutions to my problems.<br />
<br />
Karan]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[i need image scroller like songs.pk]]></title>
			<link>http://coding-central.info/showthread.php?tid=1188</link>
			<pubDate>Tue, 09 Mar 2010 21:33:31 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1188</guid>
			<description><![CDATA[i need image scroller/rotator like used in songs.pk<br />
which shall rotate images uploaded in a respected folder<br />
for new albums thumbs<br />
<br />
plzz<br />
&amp; also upload ur own 'read me' file as to help me better<br />
<br />
thanx in advance]]></description>
			<content:encoded><![CDATA[i need image scroller/rotator like used in songs.pk<br />
which shall rotate images uploaded in a respected folder<br />
for new albums thumbs<br />
<br />
plzz<br />
&amp; also upload ur own 'read me' file as to help me better<br />
<br />
thanx in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[kevchat v6]]></title>
			<link>http://coding-central.info/showthread.php?tid=1193</link>
			<pubDate>Tue, 09 Mar 2010 20:43:10 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1193</guid>
			<description><![CDATA[Awesome chat script!<br />
<br />
Demo at <a href="http://wapcafe.pro.mk" target="_blank">http://wapcafe.pro.mk</a>]]></description>
			<content:encoded><![CDATA[Awesome chat script!<br />
<br />
Demo at <a href="http://wapcafe.pro.mk" target="_blank">http://wapcafe.pro.mk</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Request and Get ur Adsense Account..]]></title>
			<link>http://coding-central.info/showthread.php?tid=1186</link>
			<pubDate>Tue, 09 Mar 2010 08:10:53 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1186</guid>
			<description><![CDATA[<span style="color: #FF0000;">Request and Get ur Adsense</span><br />
*Total cost : &#36;20<br />
<br />
Send me Pm or Email to Sivanesh92@gmail.com<br />
* With ur Payee Name,<br />
* Ur Name<br />
* Full Address<br />
* Date of Birth<br />
* Mobile Number <br />
<br />
((if u Dont like to Send ur Personal Details lik Address,Mobile Number then Send me only ur Payeee Name so tat i wil register with someother address and Number , once u got ur account u can Edit it..))<br />
<br />
Payee Name must be with First and Last Name lik Sathish Kumar.<br />
<br />
and once Repiled to ur Pm or Email u must may &#36;5 so tat i wil start creating a account for u...<br />
* Wait for 2days.. Becoz it needz 2 days to acctivate..( it Sure they will activate )<br />
* Once account activated i wil Send u the Screenshot of ur account so Then<br />
* Pay Remaining &#36;15 and get ur account..<br />
<br />
Paypal Email : ckalaiselvi2010@gmail.com<br />
<br />
<br />
Thanks..]]></description>
			<content:encoded><![CDATA[<span style="color: #FF0000;">Request and Get ur Adsense</span><br />
*Total cost : &#36;20<br />
<br />
Send me Pm or Email to Sivanesh92@gmail.com<br />
* With ur Payee Name,<br />
* Ur Name<br />
* Full Address<br />
* Date of Birth<br />
* Mobile Number <br />
<br />
((if u Dont like to Send ur Personal Details lik Address,Mobile Number then Send me only ur Payeee Name so tat i wil register with someother address and Number , once u got ur account u can Edit it..))<br />
<br />
Payee Name must be with First and Last Name lik Sathish Kumar.<br />
<br />
and once Repiled to ur Pm or Email u must may &#36;5 so tat i wil start creating a account for u...<br />
* Wait for 2days.. Becoz it needz 2 days to acctivate..( it Sure they will activate )<br />
* Once account activated i wil Send u the Screenshot of ur account so Then<br />
* Pay Remaining &#36;15 and get ur account..<br />
<br />
Paypal Email : ckalaiselvi2010@gmail.com<br />
<br />
<br />
Thanks..]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Waprock.Net]]></title>
			<link>http://coding-central.info/showthread.php?tid=1185</link>
			<pubDate>Tue, 09 Mar 2010 03:39:33 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1185</guid>
			<description><![CDATA[Here is my simple wap site,i can't use any autoindex script c0z' i only have 200mb disk space but im planning to transfer my server into a server with atleast 20gb d.S. Come check my wap at <a href="http://waprock.net" target="_blank">http://waprock.net</a> just simple but have th0usands of visit0rz per day <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></description>
			<content:encoded><![CDATA[Here is my simple wap site,i can't use any autoindex script c0z' i only have 200mb disk space but im planning to transfer my server into a server with atleast 20gb d.S. Come check my wap at <a href="http://waprock.net" target="_blank">http://waprock.net</a> just simple but have th0usands of visit0rz per day <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[admob cookies]]></title>
			<link>http://coding-central.info/showthread.php?tid=1187</link>
			<pubDate>Tue, 09 Mar 2010 01:05:25 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1187</guid>
			<description><![CDATA[HI, I want to know how to check admob cookies is set. i tried this: <br />
&lt;?php <br />
if(!isset(&#36;_COOKIE['admobuu'&#93;)){ echo 'yes'; } else{ echo 'no'; } ?&gt; it give me 'yes' when i clear cashed memory it give me yes too. where is problem? sorry for bad english, can any1 help me]]></description>
			<content:encoded><![CDATA[HI, I want to know how to check admob cookies is set. i tried this: <br />
&lt;?php <br />
if(!isset(&#36;_COOKIE['admobuu'])){ echo 'yes'; } else{ echo 'no'; } ?&gt; it give me 'yes' when i clear cashed memory it give me yes too. where is problem? sorry for bad english, can any1 help me]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I will make your toplist to count unique hits daily]]></title>
			<link>http://coding-central.info/showthread.php?tid=1183</link>
			<pubDate>Mon, 08 Mar 2010 22:35:42 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1183</guid>
			<description><![CDATA[hello friends,<br />
i know many wapmasters need this code for their topsite,i will give you the code to count unique in hits and auto image counter,in,out reset......<br />
<br />
pm me for more details ....for 1st 5 member who pm me...will get 50% offer]]></description>
			<content:encoded><![CDATA[hello friends,<br />
i know many wapmasters need this code for their topsite,i will give you the code to count unique in hits and auto image counter,in,out reset......<br />
<br />
pm me for more details ....for 1st 5 member who pm me...will get 50% offer]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[REQ&#93; Airg chat script]]></title>
			<link>http://coding-central.info/showthread.php?tid=1182</link>
			<pubDate>Mon, 08 Mar 2010 00:41:39 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1182</guid>
			<description><![CDATA[Can anyone get the script of Airg like msnmobile.airg.ca?]]></description>
			<content:encoded><![CDATA[Can anyone get the script of Airg like msnmobile.airg.ca?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Text 2 MP3 Script]]></title>
			<link>http://coding-central.info/showthread.php?tid=1181</link>
			<pubDate>Mon, 08 Mar 2010 00:41:24 +0300</pubDate>
			<guid isPermaLink="false">http://coding-central.info/showthread.php?tid=1181</guid>
			<description><![CDATA[Hey dude<br />
<br />
If u hv  Text 2 MP3 Script<br />
plz post here <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
thank you...]]></description>
			<content:encoded><![CDATA[Hey dude<br />
<br />
If u hv  Text 2 MP3 Script<br />
plz post here <img src="http://coding-central.info/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
thank you...]]></content:encoded>
		</item>
	</channel>
</rss>