<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>PHP Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the 'PHP' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2009 Programmers Heaven</copyright>
    <pubDate>Fri, 20 Nov 2009 20:10:10 -0700</pubDate>
    <lastBuildDate>Fri, 20 Nov 2009 20:10:10 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>php line graph</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409627/409627/php-line-graph/</link>
      <description>I need to make a line graph in php but my problem is that I need to plot many data points on an image of 600px x 400px.  Does anyone have any ideas of how to do this?  I tried searching around for a solution but haven't found one.  The graph would need more than 600 datapoints so I would have to separate each point by less than 1px which I don't think is possible.  I have seen graphs online that plot more than 20,000 data points on relatively smaller images.  So I know its possible I just don't know how to do it.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
homerun31</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409627/409627/php-line-graph/</guid>
      <pubDate>Fri, 20 Nov 2009 03:45:14 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: JavaScript function call</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409283/409557/re-javascript-function-call/#409557</link>
      <description>I'm not sure if size is a keyword in javascript - if it is, that may be part of the problem.  I usually create 2D arrays using something like below.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
 
var arr = new Array(5), i, j;

for(i=0; i &amp;lt; 5; i++) {
   arr[i] = new Array(2);
}

arr[0][0] = some_val;
arr[0][1] = some_val;
...
arr[4][0] = some_val;
arr[4][1] = some_val;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
HTH</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409283/409557/re-javascript-function-call/#409557</guid>
      <pubDate>Thu, 19 Nov 2009 00:09:07 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Javasscript array in PHP</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409163/409555/re-javasscript-array-in-php/#409555</link>
      <description>I don't really follow you.  What values are you placing in the array, and is it more than one array?  I don't know if it will help you or not. &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
$n = 1;

echo "&amp;lt;script type='text/javascript'&amp;gt;\n";

while($n &amp;lt;= 5) {

   echo "var arr" . $n . " = new Array(";

   for($i=0; $i &amp;lt; 10; $i++) {
      echo ($i &amp;lt; 9 ? $i . ", " : $i . ");\n");
   }

   $n++;
}

echo "&amp;lt;/script&amp;gt;";
&lt;/pre&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409163/409555/re-javasscript-array-in-php/#409555</guid>
      <pubDate>Wed, 18 Nov 2009 23:59:57 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: dynamcially generate a table</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409536/409554/re-dynamcially-generate-a-table/#409554</link>
      <description>Not entirely sure about the form, but as an example, you can add a table using something like below.  You could *probably* add something similar to a form once you have its id, tagname, or index pos.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
&amp;lt;script type="text/javascript"&amp;gt;

function addTable() {

try {
   var d = document.getElementById("divName");
   var htm = "&amp;lt;table width='50' align='center' border='1'&amp;gt;" +
             "&amp;lt;tbody&amp;gt;" +
             "&amp;lt;th&amp;gt;Dynamic Table&amp;lt;/th&amp;gt;" + 
             "&amp;lt;tr&amp;gt;" +
             "   &amp;lt;td width='100%' align='center' valign='top'&amp;gt;" +
             "      &amp;lt;p&amp;gt;test&amp;lt;/p&amp;gt;" +
             "   &amp;lt;/td&amp;gt;" +
             "&amp;lt;/tr&amp;gt;" +
             "&amp;lt;/tbody&amp;gt;" +
             "&amp;lt;/table&amp;gt;";

   d.innerHTML = htm;
   delete(htm);
   delete(d);
} catch(e) { alert("Error: " + e.message); }
}
&amp;lt;/script&amp;gt;

&amp;lt;input type="button" onclick="addTable();"&amp;gt;
&amp;lt;div id="divName"&amp;gt;&amp;lt;/div&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
HTH</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409536/409554/re-dynamcially-generate-a-table/#409554</guid>
      <pubDate>Wed, 18 Nov 2009 23:45:47 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>dynamcially generate a table</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409536/409536/dynamcially-generate-a-table/</link>
      <description>hi all,&lt;br /&gt;
&lt;br /&gt;
how would I add  table on the form in dynamaically using html and javascript? &lt;br /&gt;
&lt;br /&gt;
Can anyone send me the examples? &lt;br /&gt;
&lt;br /&gt;
I want to show the below table dynamically when I click addtable button. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;body&amp;gt;   
&amp;lt;table&amp;gt;   
  
&amp;lt;tr&amp;gt;   
&amp;lt;td width="20%"&amp;gt;   
      Quantity   
                   &amp;lt;/td&amp;gt;   
&amp;lt;/tr&amp;gt;   
                   &amp;lt;td width="80%"&amp;gt;   
                    &amp;lt;input type="text" name="txtQuantity" value="" size="20" /&amp;gt;   
                    unit(s)   
                   &amp;lt;/td&amp;gt;   
                  &amp;lt;/tr&amp;gt;   
&amp;lt;tr&amp;gt;   
&amp;lt;td colspan=2 align=right&amp;gt;&amp;lt;input type=button name=cmdCreate value="Create Table" onClick=addtable() /&amp;gt;&amp;lt;/td&amp;gt;   
&amp;lt;/tr&amp;gt;   
  
&amp;lt;/table&amp;gt;   &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409536/409536/dynamcially-generate-a-table/</guid>
      <pubDate>Wed, 18 Nov 2009 15:06:09 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>dynamcially generate a table</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409535/409535/dynamcially-generate-a-table/</link>
      <description>hi all,&lt;br /&gt;
&lt;br /&gt;
how would I add  table on the form in dynamaically using html and javascript? &lt;br /&gt;
&lt;br /&gt;
Can anyone send me the examples? &lt;br /&gt;
&lt;br /&gt;
I want to show the below table dynamically when I click addtable button. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;body&amp;gt;   
&amp;lt;table&amp;gt;   
  
&amp;lt;tr&amp;gt;   
&amp;lt;td width="20%"&amp;gt;   
      Quantity   
                   &amp;lt;/td&amp;gt;   
&amp;lt;/tr&amp;gt;   
                   &amp;lt;td width="80%"&amp;gt;   
                    &amp;lt;input type="text" name="txtQuantity" value="" size="20" /&amp;gt;   
                    unit(s)   
                   &amp;lt;/td&amp;gt;   
                  &amp;lt;/tr&amp;gt;   
&amp;lt;tr&amp;gt;   
&amp;lt;td colspan=2 align=right&amp;gt;&amp;lt;input type=button name=cmdCreate value="Create Table" onClick=addtable() /&amp;gt;&amp;lt;/td&amp;gt;   
&amp;lt;/tr&amp;gt;   
  
&amp;lt;/table&amp;gt;   &lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409535/409535/dynamcially-generate-a-table/</guid>
      <pubDate>Wed, 18 Nov 2009 15:04:20 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: PHP Software Development Project</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/397585/409403/re-php-software-development-project/#409403</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Have you heard of &lt;a href="http://myglobalstaff.com"&gt;small business outsourcing&lt;/a&gt;, visit &lt;a href="http://myglobalstaff.com"&gt;http://myglobalstaff.com&lt;/a&gt;, we can provide what you need.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/397585/409403/re-php-software-development-project/#409403</guid>
      <pubDate>Mon, 16 Nov 2009 18:39:58 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: PHP Software</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/402050/409370/re-php-software/#409370</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Why not try &lt;a href="http://myglobalstaff.com"&gt;small business outsourcing&lt;/a&gt; companies, they can help you with your problem, contact &lt;a href="http://myglobalstaff.com"&gt;MyGlobalStaff.com&lt;/a&gt;, they have great programmers from India and Philippines and one of the best &lt;a href="http://myglobalstaff.com"&gt;Outsourcing Company&lt;/a&gt; base in U.S..&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/402050/409370/re-php-software/#409370</guid>
      <pubDate>Mon, 16 Nov 2009 05:49:20 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>JavaScript function call</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409283/409283/javascript-function-call/</link>
      <description>The JavaScript function &lt;span style="color: Red;"&gt;change()&lt;/span&gt; in not getting called by &lt;span style="color: #000000;"&gt;onClick &lt;/span&gt;event  of button &lt;span style="color: #000000;"&gt;Click Me&lt;/span&gt;,JavaScript array &lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #000000;"&gt;size&lt;/span&gt; has been created in &lt;span style="color: #000000;"&gt;PHP&lt;/span&gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Untitled Document&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&amp;gt;&lt;br /&gt;
&amp;lt;script type="text/javascript" language="javascript"&amp;gt;&lt;br /&gt;
&lt;br /&gt;
function change()&lt;br /&gt;
	{&lt;br /&gt;
		alert(size[1][0]);&lt;br /&gt;
				&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;script language="javascript"&amp;gt;&lt;br /&gt;
 var size = new Array();&lt;br /&gt;
 var = count;&lt;br /&gt;
for (count = 0; count &amp;lt; 5; count++)&lt;br /&gt;
size[count] = new Array();&lt;br /&gt;
size[0][0] = 600;&lt;br /&gt;
size[0][1] = 400;&lt;br /&gt;
size[1][0] = 300;&lt;br /&gt;
size[1][1] = 400;&lt;br /&gt;
size[2][0] = 300;&lt;br /&gt;
size[2][1] = 400;&lt;br /&gt;
size[3][0] = 600;&lt;br /&gt;
size[3][1] = 400;&lt;br /&gt;
size[4][0] = 300;&lt;br /&gt;
size[4][1] = 400;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
	&lt;span style="color: #000000;"&gt;&amp;lt;input type="button" value="Click Me" onClick="change()"/&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Anything wrong with my coding,any kind support will be apreciated.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Srinivas.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409283/409283/javascript-function-call/</guid>
      <pubDate>Sat, 14 Nov 2009 05:24:31 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Javasscript array in PHP</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/409163/409163/javasscript-array-in-php/</link>
      <description>I want to create a single javascript array in PHP as shown in the code:&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
&lt;br /&gt;
while($row=mysql_fetch_array($result))&lt;br /&gt;
						{&lt;br /&gt;
								list($width, $height, $type, $attr) = getimagesize($row[photoPath]);&lt;br /&gt;
										if(($width &amp;lt; 600) &amp;amp;&amp;amp; ($height &amp;lt;= 900))&lt;br /&gt;
											{&lt;br /&gt;
												for ($i; $i&amp;lt;=1; $i++)&lt;br /&gt;
												{&lt;br /&gt;
													&lt;br /&gt;
													echo "show image";&lt;br /&gt;
																 &lt;br /&gt;
                     									}&lt;br /&gt;
												echo "show image";&lt;br /&gt;
                     //Value for javascript array row will come here&lt;br /&gt;
&lt;br /&gt;
			}&lt;br /&gt;
										else&lt;br /&gt;
											{&lt;br /&gt;
												for ($i; $i&amp;lt;=1; $i++)&lt;br /&gt;
												{&lt;br /&gt;
													&lt;br /&gt;
													echo "show image";&lt;br /&gt;
					&lt;br /&gt;
												}&lt;br /&gt;
												echo "show image";&lt;br /&gt;
												&lt;br /&gt;
                       //Value for javascript array row will come here&lt;br /&gt;
															&lt;br /&gt;
											}&lt;br /&gt;
										&lt;br /&gt;
	}&lt;br /&gt;
					&lt;br /&gt;
&lt;br /&gt;
	?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Any help will be appreciated&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Srinivas&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/409163/409163/javasscript-array-in-php/</guid>
      <pubDate>Thu, 12 Nov 2009 06:10:11 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408968/re-stop-spam/#408968</link>
      <description>&lt;span style="color: Blue;"&gt;This site has CAPTCHA and did it really help to stop spam I see each day?&lt;/span&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408968/re-stop-spam/#408968</guid>
      <pubDate>Mon, 09 Nov 2009 04:53:24 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408961/re-stop-spam/#408961</link>
      <description>You can integrate reCAPTCHA with php pages. That will do solve the problem.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408961/re-stop-spam/#408961</guid>
      <pubDate>Mon, 09 Nov 2009 00:10:34 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408932/re-stop-spam/#408932</link>
      <description>Thanks zsh for the useful code&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408932/re-stop-spam/#408932</guid>
      <pubDate>Fri, 06 Nov 2009 11:32:02 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>PHP developed comunity</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408719/408719/php-developed-comunity/</link>
      <description>Hi there,&lt;br /&gt;
&lt;br /&gt;
I have developed a site with PHPFOX script. I have applied all the known techniques in order to increase traffic (new content everyday, article submisions, blogs comments, ect), I have also applied a Script (phpfoxseo) which should make more SEO friendly each page of the site (meta tags, meta description, etc).&lt;br /&gt;
&lt;br /&gt;
But still the site does not get visitors. PHPFOX admit their script "is not very SEO friendly" since it has several years already" however they also shows several websites which may be very susscessfull.&lt;br /&gt;
&lt;br /&gt;
Could you guys have a look into the site in my signature and tell me if there is any obvious mistake on it?&lt;br /&gt;
&lt;br /&gt;
Could you please advice me where to find a good SEO company which analize the site and give directions?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408719/408719/php-developed-comunity/</guid>
      <pubDate>Mon, 02 Nov 2009 07:21:07 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408644/re-stop-spam/#408644</link>
      <description>It does have something which is similar with Captch Code.&lt;br /&gt;
I am not sure that are they same?&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;td class="altbg1" width="21%"&amp;gt;&amp;lt;span class="bold"&amp;gt;CheckCode&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;
&amp;lt;td class="altbg2"&amp;gt; &amp;lt;div id="seccodeimage"&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class="input"&amp;gt;&amp;lt;input type="text" name="seccodeverify" size="4" maxlength="4" id="seccodeverify" onBlur="checkseccode()"&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class="notice" id="checkseccodeverify"&amp;gt; Refresh if you can't see it clear.&amp;lt;/div&amp;gt;
&amp;lt;script type="text/javascript"&amp;gt; 
updateseccode(80, 35)
&amp;lt;/script&amp;gt;&amp;lt;/td&amp;gt;
&amp;lt;/tr&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
But it can't stop the spams.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408644/re-stop-spam/#408644</guid>
      <pubDate>Sat, 31 Oct 2009 15:06:37 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408631/re-stop-spam/#408631</link>
      <description>The best method to prevent spam is to use captchas before submitting anything. And if you want to take it a step further, throw up moderation.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408631/re-stop-spam/#408631</guid>
      <pubDate>Sat, 31 Oct 2009 09:47:35 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Stop Spam</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408595/408595/stop-spam/</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
I am new for php.&lt;br /&gt;
I am helping our church to create a forum writeen with php. However the annoying thing is that everyday there are several new guys registering the forum and post spams.&lt;br /&gt;
&lt;br /&gt;
How can I stop them?&lt;br /&gt;
&lt;br /&gt;
I heard that we can add one authenticate statement when sign up.&lt;br /&gt;
Such as answer 1+1=2.&lt;br /&gt;
&lt;br /&gt;
Is it true?&lt;br /&gt;
Can you please give me some sample codes?&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408595/408595/stop-spam/</guid>
      <pubDate>Fri, 30 Oct 2009 10:58:03 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: PHP Software</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/402050/408566/re-php-software/#408566</link>
      <description>Hi,&lt;br /&gt;
please contact me at soni16_sachin@yahoo.co.in&lt;br /&gt;
you will get the solution definitely.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/402050/408566/re-php-software/#408566</guid>
      <pubDate>Fri, 30 Oct 2009 00:23:04 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Get all Programming Solutions</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/408245/408245/get-all-programming-solutions/</link>
      <description>Hello everyone, if you have any problem in PHP then please contact me, send me an email on soni16_sachin@yahoo.co.in and chat with me you will definitely get satisfaction.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/408245/408245/get-all-programming-solutions/</guid>
      <pubDate>Sat, 24 Oct 2009 08:34:47 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Something in this if statement. o_O</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/223827/405991/re-something-in-this-if-statement-o_o/#405991</link>
      <description>Hi&lt;br /&gt;
&lt;br /&gt;
Please visit&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://solutionsfordevelopers.blogspot.com/search/label/Image%20Uploading"&gt;http://solutionsfordevelopers.blogspot.com/search/label/Image%20Uploading&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
to know more about image uploding&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/223827/405991/re-something-in-this-if-statement-o_o/#405991</guid>
      <pubDate>Tue, 13 Oct 2009 07:21:07 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: I Thought  this scripts directory can help Web designers</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/402010/405843/re-i-thought--this-scripts-directory-can-help-web-designers/#405843</link>
      <description>I think most are shareware&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/402010/405843/re-i-thought--this-scripts-directory-can-help-web-designers/#405843</guid>
      <pubDate>Tue, 13 Oct 2009 04:08:16 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: Where To Buy Coach,Juicy Couture,Ed Hardy,Dooney B</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/398702/403673/re-where-to-buy-coachjuicy-coutureed-hardydooney-b/#403673</link>
      <description>DESIGNER REPLICA HANDBAG Wholesale at www.bagtrade.com &lt;br /&gt;
&lt;br /&gt;
Designer replica handbags wholesale &amp;amp; retail.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.bagtrade.com"&gt;http://www.bagtrade.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Wholesale &amp;amp; retail AAA+ quality replica handbags, wallets. Carries Louis Vuitton, Chanel, Gucci, Chloe, Mulberry, Balenciaga, Fendi, Coach, Hermes, Versace, MIUMIU, Prada, Jimmy Choo and more.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/398702/403673/re-where-to-buy-coachjuicy-coutureed-hardydooney-b/#403673</guid>
      <pubDate>Fri, 09 Oct 2009 05:02:28 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>PHP online software training at single click</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/402639/402639/php-online-software-training-at-single-click/</link>
      <description>&lt;a href="http://www.wingslive.com"&gt;Wingslive&lt;/a&gt; is an online computer software, Softskills training website with more than 50 software courses at lowest cost. Now, you can find the course for &lt;a href="http://www.wingslive.com/web-development/php5.aspx"&gt;PHP&lt;/a&gt; with MySQL at lowest cost. Just Logon to wingslive and become a &lt;a href="http://www.wingslive.com/web-development/php5.aspx"&gt;PHP &lt;/a&gt;developer within 3-4 Hrs..&lt;br /&gt;
&lt;br /&gt;
Useful Links: &lt;br /&gt;
&lt;a href="http://www.wingslive.com/web-development/php5.aspx"&gt;PHP Course Page &lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.wingslive.com/demo/demoplayer.html?fname=ws_wl_demo_php.swf"&gt;PHP Demo Video&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/402639/402639/php-online-software-training-at-single-click/</guid>
      <pubDate>Wed, 07 Oct 2009 22:35:32 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>Re: For sell Samsung B2100 Xplorer and LG GM730</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/394835/402424/re-for-sell-samsung-b2100-xplorer-and-lg-gm730/#402424</link>
      <description>hi. i am singapore people and i wanted to buy your iphone. can u contact me. asap. +6591032646.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/394835/402424/re-for-sell-samsung-b2100-xplorer-and-lg-gm730/#402424</guid>
      <pubDate>Wed, 07 Oct 2009 00:58:56 -0700</pubDate>
      <category>PHP</category>
    </item>
    <item>
      <title>wholesale air jordans,cheap nike shoes,air yeezy shoes</title>
      <link>http://www.programmersheaven.com/mb/phpstuff/402254/402254/wholesale-air-jordanscheap-nike-shoesair-yeezy-shoes/</link>
      <description>&lt;a href="http://www.sneakersell.com"&gt;nike shoes&lt;/a&gt;,air jordans,&lt;a href="http://www.sneakersell.com"&gt;nike dunks&lt;/a&gt; sneaker,nike air force one,nike dunk low Premium sb,air max shoes,air force 1 25th,air jordan spizikes,nike dunk high sb,adidas shoes,puma shoes,women shoes size,brand hoodies,jeans,handbags,sun glasses,clothes,hats. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
welcome to &lt;span style="color: Red;"&gt;&lt;strong&gt;&lt;span style="font-size: medium;"&gt;&lt;a href="http://www.sneakersell.com"&gt;www.sneakersell.com&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://www.nikept.com/UploadFiles/20090809142645090.jpg" /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/phpstuff/402254/402254/wholesale-air-jordanscheap-nike-shoesair-yeezy-shoes/</guid>
      <pubDate>Tue, 06 Oct 2009 07:11:57 -0700</pubDate>
      <category>PHP</category>
    </item>
  </channel>
</rss>