<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community</title>
		<link>http://www.daniweb.com/forums/</link>
		<description>Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support.</description>
		<language>en-US</language>
		<lastBuildDate>Fri, 18 Dec 2009 05:13:47 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/alphaimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community</title>
			<link>http://www.daniweb.com/forums/</link>
		</image>
		<item>
			<title>failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable</title>
			<link>http://www.daniweb.com/forums/thread247114.html</link>
			<pubDate>Thu, 17 Dec 2009 10:08:25 GMT</pubDate>
			<description><![CDATA[Hi, 
I am trying to read the content of url. 
when manually i put url in browser  
 
link : http://www.mvnforum.com/mvnforum/viewmember?member=pbmissions 
it opens. 
 
but using code  
 
$homepage = file_get_contents('http://www.mvnforum.com/mvnforum/viewmember?member=pbmissions');]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
I am trying to read the content of url.<br />
when manually i put url in browser <br />
<br />
link : <a rel="nofollow" class="t" href="http://www.mvnforum.com/mvnforum/viewmember?member=pbmissions" target="_blank">http://www.mvnforum.com/mvnforum/vie...ber=pbmissions</a><br />
it opens.<br />
<br />
but using code <br />
 <pre style="margin:20px; line-height:13px">$homepage = file_get_contents('http://www.mvnforum.com/mvnforum/viewmember?member=pbmissions');<br />
echo $homepage;</pre><br />
Warning: file_get_contents(<a rel="nofollow" class="t" href="http://www.mvnforum.com/mvnforum/viewmember?member=pbmissions" target="_blank">http://www.mvnforum.com/mvnforum/vie...ber=pbmissions</a>) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable in C:\xampp\htdocs\test.php on line 2<br />
<br />
What is problem ?<br />
How to solve this?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread247114.html</guid>
		</item>
		<item>
			<title>Problem in transfer fron 1st list to another?</title>
			<link>http://www.daniweb.com/forums/thread239740.html</link>
			<pubDate>Thu, 19 Nov 2009 12:48:04 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I am trying to transfer multiple select country to another select box. 
 
But when i click on submit i didn't get the value of array of list2 i.e finallist? 
 
I can't understand what is problem?? 
 
Please help me how to solve this??]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am trying to transfer multiple select country to another select box.<br />
<br />
But when i click on submit i didn't get the value of array of list2 i.e finallist?<br />
<br />
I can't understand what is problem??<br />
<br />
Please help me how to solve this??  <br />
<br />
 <pre style="margin:20px; line-height:13px">&lt;?<br />
if($_POST[&quot;add&quot;])<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo &quot;sdads&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; echo &quot;&lt;br&gt;hello -&gt;&quot;.$country_array=$_POST['finallist'];<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
}<br />
?&gt;<br />
&lt;script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;&gt;<br />
<br />
function hasOptions(obj){if(obj!=null &amp;&amp; obj.options!=null){return true;}return false;}<br />
function selectUnselectMatchingOptions(obj,regex,which,only){if(window.RegExp){if(which == &quot;select&quot;){var selected1=true;var selected2=false;}else if(which == &quot;unselect&quot;){var selected1=false;var selected2=true;}else{return;}var re = new RegExp(regex);if(!hasOptions(obj)){return;}for(var i=0;i&lt;obj.options.length;i++){if(re.test(obj.options[i].text)){obj.options[i].selected = selected1;}else{if(only == true){obj.options[i].selected = selected2;}}}}}<br />
function selectMatchingOptions(obj,regex){selectUnselectMatchingOptions(obj,regex,&quot;select&quot;,false);}<br />
function selectOnlyMatchingOptions(obj,regex){selectUnselectMatchingOptions(obj,regex,&quot;select&quot;,true);}<br />
function unSelectMatchingOptions(obj,regex){selectUnselectMatchingOptions(obj,regex,&quot;unselect&quot;,false);}<br />
function sortSelect(obj){var o = new Array();if(!hasOptions(obj)){return;}for(var i=0;i&lt;obj.options.length;i++){o[o.length] = new Option( obj.options[i].text, obj.options[i].value, obj.options[i].defaultSelected, obj.options[i].selected) ;}if(o.length==0){return;}o = o.sort(<br />
function(a,b){if((a.text+&quot;&quot;) &lt;(b.text+&quot;&quot;)){return -1;}if((a.text+&quot;&quot;) &gt;(b.text+&quot;&quot;)){return 1;}return 0;});for(var i=0;i&lt;o.length;i++){obj.options[i] = new Option(o[i].text, o[i].value, o[i].defaultSelected, o[i].selected);}}<br />
function selectAllOptions(obj){if(!hasOptions(obj)){return;}for(var i=0;i&lt;obj.options.length;i++){obj.options[i].selected = true;}}<br />
function moveSelectedOptions(from,to){if(arguments.length&gt;3){var regex = arguments[3];if(regex != &quot;&quot;){unSelectMatchingOptions(from,regex);}}if(!hasOptions(from)){return;}for(var i=0;i&lt;from.options.length;i++){var o = from.options[i];if(o.selected){if(!hasOptions(to)){var index = 0;}else{var index=to.options.length;}to.options[index] = new Option( o.text, o.value, false, false);}}for(var i=(from.options.length-1);i&gt;=0;i--){var o = from.options[i];if(o.selected){from.options[i] = null;}}if((arguments.length&lt;3) ||(arguments[2]==true)){sortSelect(from);sortSelect(to);}from.selectedIndex = -1;to.selectedIndex = -1;}<br />
function copySelectedOptions(from,to){var options = new Object();if(hasOptions(to)){for(var i=0;i&lt;to.options.length;i++){options[to.options[i].value] = to.options[i].text;}}if(!hasOptions(from)){return;}for(var i=0;i&lt;from.options.length;i++){var o = from.options[i];if(o.selected){if(options[o.value] == null || options[o.value] == &quot;undefined&quot; || options[o.value]!=o.text){if(!hasOptions(to)){var index = 0;}else{var index=to.options.length;}to.options[index] = new Option( o.text, o.value, false, false);}}}if((arguments.length&lt;3) ||(arguments[2]==true)){sortSelect(to);}from.selectedIndex = -1;to.selectedIndex = -1;}<br />
function moveAllOptions(from,to){selectAllOptions(from);if(arguments.length==2){moveSelectedOptions(from,to);}else if(arguments.length==3){moveSelectedOptions(from,to,arguments[2]);}else if(arguments.length==4){moveSelectedOptions(from,to,arguments[2],arguments[3]);}}<br />
function copyAllOptions(from,to){selectAllOptions(from);if(arguments.length==2){copySelectedOptions(from,to);}else if(arguments.length==3){copySelectedOptions(from,to,arguments[2]);}}<br />
function swapOptions(obj,i,j){var o = obj.options;var i_selected = o[i].selected;var j_selected = o[j].selected;var temp = new Option(o[i].text, o[i].value, o[i].defaultSelected, o[i].selected);var temp2= new Option(o[j].text, o[j].value, o[j].defaultSelected, o[j].selected);o[i] = temp2;o[j] = temp;o[i].selected = j_selected;o[j].selected = i_selected;}<br />
function moveOptionUp(obj){if(!hasOptions(obj)){return;}for(i=0;i&lt;obj.options.length;i++){if(obj.options[i].selected){if(i != 0 &amp;&amp; !obj.options[i-1].selected){swapOptions(obj,i,i-1);obj.options[i-1].selected = true;}}}}<br />
function moveOptionDown(obj){if(!hasOptions(obj)){return;}for(i=obj.options.length-1;i&gt;=0;i--){if(obj.options[i].selected){if(i !=(obj.options.length-1) &amp;&amp; ! obj.options[i+1].selected){swapOptions(obj,i,i+1);obj.options[i+1].selected = true;}}}}<br />
function removeSelectedOptions(from){if(!hasOptions(from)){return;}if(from.type==&quot;select-one&quot;){from.options[from.selectedIndex] = null;}else{for(var i=(from.options.length-1);i&gt;=0;i--){var o=from.options[i];if(o.selected){from.options[i] = null;}}}from.selectedIndex = -1;}<br />
function removeAllOptions(from){if(!hasOptions(from)){return;}for(var i=(from.options.length-1);i&gt;=0;i--){from.options[i] = null;}from.selectedIndex = -1;}<br />
function addOption(obj,text,value,selected){if(obj!=null &amp;&amp; obj.options!=null){obj.options[obj.options.length] = new Option(text, value, false, selected);}}<br />
<br />
function validate_test()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var success=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var len=document.frm_biz_add.elements['finallist[]'].options.length;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  if(len&gt;0)<br />
&nbsp; &nbsp; &nbsp; &nbsp;  {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; success=1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp;  } <br />
&nbsp; &nbsp; &nbsp; &nbsp;  if(success==0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; alert(&quot;Please select country&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
}<br />
<br />
&lt;/script&gt;<br />
<br />
&lt;form name=&quot;frm_biz_add&quot; id=&quot;frm_biz_add&quot; action=&quot;index.php?option=com_content&amp;view=article&amp;id=22&amp;Itemid=70&amp;action=add&quot; method=&quot;post&quot; onSubmit='return validate_test();'&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;table border=&quot;0&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<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; &lt;td&gt;<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; &lt;select name=&quot;list11&quot; id=&quot;list11&quot; multiple size=&quot;15&quot; style=&quot;width:130px;&quot; ondblclick=&quot;moveSelectedOptions(this.form['list11'],this.form['finallist'],false)&quot;&gt;<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; &lt;?<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; output_country_type($country_code_array);<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; ?&gt;<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; <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; &lt;/select&gt;<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; &lt;/td&gt;<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; &lt;td align=&quot;CENTER&quot; valign=&quot;MIDDLE&quot;&gt;<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; &amp;nbsp;&amp;nbsp;&amp;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; <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; &lt;/td&gt;<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; &lt;td&gt;<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; &lt;select name=&quot;finallist[]&quot; id=&quot;finallist&quot; multiple size=&quot;15&quot; style=&quot;width:130px;&quot;&nbsp; ondblclick=&quot;moveSelectedOptions(this.form['finallist'],this.form['list11'],false)&quot;&gt;<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; &lt;/select&gt;<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; &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<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; &lt;td colspan=&quot;3&quot; align=&quot;center&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<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; &lt;td colspan=&quot;3&quot; align=&quot;center&quot;&gt;<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; &lt;input name=&quot;add&quot; type=&quot;submit&quot; value=&quot;Submit&quot;&nbsp; style=&quot;background:url(images/btn_submit.jpg) no-repeat; border:none; width:58px; height:22px; cursor:pointer;&quot;/&gt;<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; &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/form&gt;</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread239740.html</guid>
		</item>
		<item>
			<title>credit card validation with date, cvv??</title>
			<link>http://www.daniweb.com/forums/thread238860.html</link>
			<pubDate>Mon, 16 Nov 2009 07:45:28 GMT</pubDate>
			<description><![CDATA[Hi, i am trying to validate credit card. 
 
I want to validate credit card  
 
1> name on card 
2> card number 
3> card type (visa,mastercard... etc) 
4> cvv 
5> expiry date]]></description>
			<content:encoded><![CDATA[<div>Hi, i am trying to validate credit card.<br />
<br />
I want to validate credit card <br />
<br />
1&gt; name on card<br />
2&gt; card number<br />
3&gt; card type (visa,mastercard... etc)<br />
4&gt; cvv<br />
5&gt; expiry date<br />
<br />
I seared on google but most of links gives information to validate card according to number.<br />
<br />
How to do this? any sample link how to do this? or script ?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread238860.html</guid>
		</item>
		<item>
			<title>Php mysql image scroll script??</title>
			<link>http://www.daniweb.com/forums/thread233870.html</link>
			<pubDate>Tue, 27 Oct 2009 13:38:06 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I want to create script like in facebook. 
 
When we log into facebook, go into any friend's profile 
 
Their gift button , show gifts with pagination.  
when click on image and ok button it save into database. 
 
Any sample demo script ?]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to create script like in facebook.<br />
<br />
When we log into facebook, go into any friend's profile<br />
<br />
Their gift button , show gifts with pagination. <br />
when click on image and ok button it save into database.<br />
<br />
Any sample demo script ?<br />
How to create script like this?<br />
<br />
Please give me suggestions.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread233870.html</guid>
		</item>
		<item>
			<title>About joomla,virtuemart,shipping??</title>
			<link>http://www.daniweb.com/forums/thread233412.html</link>
			<pubDate>Mon, 26 Oct 2009 09:43:06 GMT</pubDate>
			<description><![CDATA[Hi i am installing joomla ,virtuemart. 
 
I have some queries about shipping costs.. 
 
1> sell the product from 5 cites. customer choose product add to cart 
 
How to customer to get product in lowest shipping cost Or 
 
cart be able to calculate shipping from the nearest city.]]></description>
			<content:encoded><![CDATA[<div>Hi i am installing joomla ,virtuemart.<br />
<br />
I have some queries about shipping costs..<br />
<br />
1&gt; sell the product from 5 cites. customer choose product add to cart<br />
<br />
How to customer to get product in lowest shipping cost Or<br />
<br />
cart be able to calculate shipping from the nearest city.<br />
<br />
2&gt; Customer can review their past orders and able to reorder the same products.<br />
<br />
<br />
Please give me suggestion on these points<br />
How to do this using VirtueMart.??</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread233412.html</guid>
		</item>
		<item>
			<title>How to Import excel data to mysql database?</title>
			<link>http://www.daniweb.com/forums/thread228789.html</link>
			<pubDate>Fri, 09 Oct 2009 07:11:19 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I want to do like: 
1> browse file and upload .xls file only (Not csv or other format)  
2> save into mysql database. 
 
Any sample demo example?? 
Or link please?]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to do like:<br />
1&gt; <span style="color:Red">browse file and upload .xls file only</span> (Not csv or other format) <br />
2&gt; save into mysql database.<br />
<br />
Any sample demo example??<br />
Or link please?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread228789.html</guid>
		</item>
		<item>
			<title>Repalce content in html??</title>
			<link>http://www.daniweb.com/forums/thread225814.html</link>
			<pubDate>Fri, 25 Sep 2009 20:44:15 GMT</pubDate>
			<description><![CDATA[Hi,This is my php file. 
I want to replace  
$$FullName$$ with Jon Rama 
And $$FirstName$$ with Jon and $$Gender$$ with Male 
 
And save or create to new file Jon_Rama.php  
 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>Hi,This is my php file.<br />
I want to <span style="color:Red">replace </span><br />
<span style="color:Green">$$FullName$$ with Jon Rama<br />
And $$FirstName$$ with Jon and $$Gender$$ with Male</span><br />
<br />
And <span style="color:Red">save or create to new file Jon_Rama.php</span> <br />
<br />
 <pre style="margin:20px; line-height:13px">&lt;table width=&quot;100%&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td align=&quot;center&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h1 class=&quot;title_list&quot;&gt;$$FullName$$&lt;/h1&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/b&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;br&gt;&lt;br&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;td&gt;$$FirstName$$ is a $$Gender$$.&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&lt;/table&gt;</pre><br />
How to do this??</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread225814.html</guid>
		</item>
		<item>
			<title>Repalce content in html??</title>
			<link>http://www.daniweb.com/forums/thread225812.html</link>
			<pubDate>Fri, 25 Sep 2009 20:38:31 GMT</pubDate>
			<description><![CDATA[Hi,This is my php file. 
I want to replace  
$$FullName$$ with Jon Rama 
And $$FirstName$$ with Jon and $$Gender$$ with Male 
 
And create to new file Jon_Rama.php  
 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>Hi,This is my php file.<br />
I want to <span style="color:Red">replace </span><br />
<span style="color:Green">$$FullName$$ with Jon Rama<br />
And $$FirstName$$ with Jon and $$Gender$$ with Male</span><br />
<br />
And <span style="color:Red">create to new file Jon_Rama.php</span> <br />
<br />
 <pre style="margin:20px; line-height:13px">&lt;table width=&quot;100%&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td align=&quot;center&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h1 class=&quot;title_list&quot;&gt;$$FullName$$&lt;/h1&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/b&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;br&gt;&lt;br&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;td&gt;$$FirstName$$ is a $$Gender$$.&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&lt;/table&gt;</pre><br />
How to do this??</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>Aamit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread225812.html</guid>
		</item>
	</channel>
</rss>
