<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for Famous Internet Programmer</title>
	<atom:link href="http://www.famousinternetprogrammer.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.famousinternetprogrammer.com</link>
	<description>PHP Programming for Internet Marketers</description>
	<pubDate>Sat, 31 Jul 2010 13:10:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on please help me about this PHP program problem? by Greybox</title>
		<link>http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem/comment-page-1#comment-2821</link>
		<dc:creator>Greybox</dc:creator>
		<pubDate>Sat, 31 Jul 2010 03:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem#comment-2821</guid>
		<description>haha WOW, wrong language buddy. use javascript.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>haha WOW, wrong language buddy. use javascript.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on please help me about this PHP program problem? by BobberKnob</title>
		<link>http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem/comment-page-1#comment-2820</link>
		<dc:creator>BobberKnob</dc:creator>
		<pubDate>Sat, 31 Jul 2010 03:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem#comment-2820</guid>
		<description>You'd be better off using Javascript.  

PHP has nothing to do with it.  

Or you can try using css if you know what you're doing.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>You&#8217;d be better off using Javascript.  </p>
<p>PHP has nothing to do with it.  </p>
<p>Or you can try using css if you know what you&#8217;re doing.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on please help me about this PHP program problem? by uf Ho</title>
		<link>http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem/comment-page-1#comment-2819</link>
		<dc:creator>uf Ho</dc:creator>
		<pubDate>Sat, 31 Jul 2010 03:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/program-in-php/please-help-me-about-this-php-program-problem#comment-2819</guid>
		<description>oh nice .. i have a coding like this . email me nomi@nomiguide.com&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>oh nice .. i have a coding like this . email me <a href="mailto:nomi@nomiguide.com">nomi@nomiguide.com</a><br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Help! How do I do this in php? by deepak</title>
		<link>http://www.famousinternetprogrammer.com/program-in-php/help-how-do-i-do-this-in-php/comment-page-1#comment-2817</link>
		<dc:creator>deepak</dc:creator>
		<pubDate>Thu, 22 Jul 2010 11:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/program-in-php/help-how-do-i-do-this-in-php#comment-2817</guid>
		<description>can you use javascript to do calculations? 
is it too complicated to do with client side ? 
can you use ajax so that some other form does the calculation?

.......................

if you can do math using javascript, then you can use hidden fields to send data to php script ..

i see that you say it is as a blackbox application, i wonder how can send input data to it. but  hope you can use my suggestion..

ex: i assume that &#34;F_Total&#34; is input for your blackbox application! ( a post parameter for your application)

&#60;input id=&#34;F_Tot&#34; name=&#34;F_Total&#34; type=&#34;hidden&#34; /&#62;

( if you use &#34;name&#34;  attribute in your html tag, you can get the value at php script after submit. this works in any server side languages)

do all calculations before you submit, 

&#60;script type=&#34;text/javascript&#34;&#62;
function doyourcalculation(){
var result;
F_Tot = document.getElementById('F_Tot'); // find hidden field
.
.
.
calculations
result = 3 + 2;
.
.
if (result){ //if result is not nothing
 F_Tot.value = result; 
return true;
}
else
return false; 


};
&#60;/script&#62;

use return true or false for validations... 
&#60;input type=&#34;submit&#34; value=&#34;submit&#34; onclick=&#34;doyourcalculation()&#34; /&#62;

if doyourcalculation has no error and returns true, hidden field has the input for your blackbox application. 


 good luck..&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>can you use javascript to do calculations?<br />
is it too complicated to do with client side ?<br />
can you use ajax so that some other form does the calculation?</p>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
<p>if you can do math using javascript, then you can use hidden fields to send data to php script ..</p>
<p>i see that you say it is as a blackbox application, i wonder how can send input data to it. but  hope you can use my suggestion..</p>
<p>ex: i assume that &quot;F_Total&quot; is input for your blackbox application! ( a post parameter for your application)</p>
<p>&lt;input id=&quot;F_Tot&quot; name=&quot;F_Total&quot; type=&quot;hidden&quot; /&gt;</p>
<p>( if you use &quot;name&quot;  attribute in your html tag, you can get the value at php script after submit. this works in any server side languages)</p>
<p>do all calculations before you submit, </p>
<p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
function doyourcalculation(){<br />
var result;<br />
F_Tot = document.getElementById(&#8217;F_Tot&#8217;); // find hidden field<br />
.<br />
.<br />
.<br />
calculations<br />
result = 3 + 2;<br />
.<br />
.<br />
if (result){ //if result is not nothing<br />
 F_Tot.value = result;<br />
return true;<br />
}<br />
else<br />
return false; </p>
<p>};<br />
&lt;/script&gt;</p>
<p>use return true or false for validations&#8230;<br />
&lt;input type=&quot;submit&quot; value=&quot;submit&quot; onclick=&quot;doyourcalculation()&quot; /&gt;</p>
<p>if doyourcalculation has no error and returns true, hidden field has the input for your blackbox application. </p>
<p> good luck..<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where are the best places to learn programming skills quickly? by Colanth</title>
		<link>http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly/comment-page-1#comment-2816</link>
		<dc:creator>Colanth</dc:creator>
		<pubDate>Wed, 21 Jul 2010 08:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly#comment-2816</guid>
		<description>That's like a teen-ager asking how to be 50 years old quickly - you can't do it quickly, whether it's getting older or learning programming.  To see what you're asking for, read http://www-old.oberon.ethz.ch/WirthPubl/AD.pdf  That's the best programming course ever written.  (No, I didn't write it, and it's free.)  Figure on at least 6 months to get through that.

MySQL is a program, the language is SQL.  Figure on a few months, at least, to learn the basics of SQL (the things that 95% of SQL programmers stop at).  PHP is trivial once you know programming, you can &#34;learn&#34; it by keeping the php.chm file open as you work.  BB code is about as difficult as learning to count to 10.

But learn programming first.  If you want to build a house, you don't learn &#34;hammer&#34;, you learn carpentry.  Don;t learn the tool (programming languages) until you've learned what to use tools for (programming).&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;30 years of teaching programming</description>
		<content:encoded><![CDATA[<p>That&#8217;s like a teen-ager asking how to be 50 years old quickly - you can&#8217;t do it quickly, whether it&#8217;s getting older or learning programming.  To see what you&#8217;re asking for, read <a href="http://www-old.oberon.ethz.ch/WirthPubl/AD.pdf" rel="nofollow">http://www-old.oberon.ethz.ch/WirthPubl/AD.pdf</a>  That&#8217;s the best programming course ever written.  (No, I didn&#8217;t write it, and it&#8217;s free.)  Figure on at least 6 months to get through that.</p>
<p>MySQL is a program, the language is SQL.  Figure on a few months, at least, to learn the basics of SQL (the things that 95% of SQL programmers stop at).  PHP is trivial once you know programming, you can &quot;learn&quot; it by keeping the php.chm file open as you work.  BB code is about as difficult as learning to count to 10.</p>
<p>But learn programming first.  If you want to build a house, you don&#8217;t learn &quot;hammer&quot;, you learn carpentry.  Don;t learn the tool (programming languages) until you&#8217;ve learned what to use tools for (programming).<br /><b>References : </b><br />30 years of teaching programming</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where are the best places to learn programming skills quickly? by AABattery</title>
		<link>http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly/comment-page-1#comment-2815</link>
		<dc:creator>AABattery</dc:creator>
		<pubDate>Wed, 21 Jul 2010 07:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly#comment-2815</guid>
		<description>One place you can learn PHP and MySQL is at http://w3schools.com/

You can learn some of the basics there. You can also check out php.net for more info and user comments.

This probably didn't help much, but good luck, anyways!&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>One place you can learn PHP and MySQL is at <a href="http://w3schools.com/" rel="nofollow">http://w3schools.com/</a></p>
<p>You can learn some of the basics there. You can also check out php.net for more info and user comments.</p>
<p>This probably didn&#8217;t help much, but good luck, anyways!<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where are the best places to learn programming skills quickly? by Greater Meridian</title>
		<link>http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly/comment-page-1#comment-2814</link>
		<dc:creator>Greater Meridian</dc:creator>
		<pubDate>Wed, 21 Jul 2010 07:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly#comment-2814</guid>
		<description>I'd start with a nearby college or university library, if you can get to one.  Look over every book that has code examples in it, and make sure you pay close attention to ones with titles like &#34;Data Structures &#38; Algorithms&#34; because they illustrate a lot of techniques WITH lots of diagrams, whereas a lot of the books which are about coding focus on syntax and the language itself.

If you see enough examples of good algorithms in those, then you'll be able to learn how to spot good code in the other books that give coding examples.  For object-oriented programming, you ought to see if you can find the solutions manual to a c++ textbook which is called &#34;The C++ Answer Book&#34;, because that is nothing BUT code, and it shows a lot of ways of using templates, which you don't see everywhere.

I'm not suggesting you learn C++.  I don't like either C or it, myself.  But you shouldn't miss out on examining it and knowing exactly how to use it if you are called to do so and can't refuse.

After you look at those books for a while, choose a language to really get up to speed on in a hurry, and crack the books on it.  After you do that, download a free compiler from somewhere that is compatible with it, and try to write up something that uses every kind of algorithm you saw in those data structures and algorithm books.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;d start with a nearby college or university library, if you can get to one.  Look over every book that has code examples in it, and make sure you pay close attention to ones with titles like &quot;Data Structures &amp; Algorithms&quot; because they illustrate a lot of techniques WITH lots of diagrams, whereas a lot of the books which are about coding focus on syntax and the language itself.</p>
<p>If you see enough examples of good algorithms in those, then you&#8217;ll be able to learn how to spot good code in the other books that give coding examples.  For object-oriented programming, you ought to see if you can find the solutions manual to a c++ textbook which is called &quot;The C++ Answer Book&quot;, because that is nothing BUT code, and it shows a lot of ways of using templates, which you don&#8217;t see everywhere.</p>
<p>I&#8217;m not suggesting you learn C++.  I don&#8217;t like either C or it, myself.  But you shouldn&#8217;t miss out on examining it and knowing exactly how to use it if you are called to do so and can&#8217;t refuse.</p>
<p>After you look at those books for a while, choose a language to really get up to speed on in a hurry, and crack the books on it.  After you do that, download a free compiler from somewhere that is compatible with it, and try to write up something that uses every kind of algorithm you saw in those data structures and algorithm books.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Where are the best places to learn programming skills quickly? by tarp</title>
		<link>http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly/comment-page-1#comment-2813</link>
		<dc:creator>tarp</dc:creator>
		<pubDate>Wed, 21 Jul 2010 06:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/advanced-php-programming/where-are-the-best-places-to-learn-programming-skills-quickly#comment-2813</guid>
		<description>Why not try and contribute to an open source project on something like github: http://github.com/languages/PHP -- you would also learn a version control system if you're not already familiar with Git.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>Why not try and contribute to an open source project on something like github: <a href="http://github.com/languages/PHP" rel="nofollow">http://github.com/languages/PHP</a> &#8212; you would also learn a version control system if you&#8217;re not already familiar with Git.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Help With PHP Email Form - Attaching Files? by Archana</title>
		<link>http://www.famousinternetprogrammer.com/programming-with-php/help-with-php-email-form-attaching-files/comment-page-1#comment-2812</link>
		<dc:creator>Archana</dc:creator>
		<pubDate>Thu, 15 Jul 2010 08:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/programming-with-php/help-with-php-email-form-attaching-files#comment-2812</guid>
		<description>The code has been truncated, so it is difficult to tell you exactly what is going on...
But, it seems that the line:

if(eregi('.jpg',$_FILES[image][name]… {

is checking whether the uploaded file is of the type .jpg
Whenever, a file is uploaded, the file info is stored in the $_FILES superglobal. You can access the type of the uploaded file using $_FILES[image][type].

So, in the above mentioned if condition, check what is happening. If it is just checking the file type, you can remove it and your code will allow other file extensions too.

Refer to the following link for more details:
http://www.php.net/manual/en/features.file-upload.php&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>The code has been truncated, so it is difficult to tell you exactly what is going on&#8230;<br />
But, it seems that the line:</p>
<p>if(eregi(&#8217;.jpg&#8217;,$_FILES[image][name]… {</p>
<p>is checking whether the uploaded file is of the type .jpg<br />
Whenever, a file is uploaded, the file info is stored in the $_FILES superglobal. You can access the type of the uploaded file using $_FILES[image][type].</p>
<p>So, in the above mentioned if condition, check what is happening. If it is just checking the file type, you can remove it and your code will allow other file extensions too.</p>
<p>Refer to the following link for more details:<br />
<a href="http://www.php.net/manual/en/features.file-upload.php" rel="nofollow">http://www.php.net/manual/en/features.file-upload.php</a><br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m interested in becoming a veterinarian what courses should i take at my community college? by PE2008</title>
		<link>http://www.famousinternetprogrammer.com/programming-in-php/im-interested-in-becoming-a-veterinarian-what-courses-should-i-take-at-my-community-college/comment-page-1#comment-2810</link>
		<dc:creator>PE2008</dc:creator>
		<pubDate>Sun, 04 Jul 2010 02:32:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.famousinternetprogrammer.com/programming-in-php/im-interested-in-becoming-a-veterinarian-what-courses-should-i-take-at-my-community-college#comment-2810</guid>
		<description>You can get a head start by taking Butcher School.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;http://woolypigs.com/_kropf.html</description>
		<content:encoded><![CDATA[<p>You can get a head start by taking Butcher School.<br /><b>References : </b><br /><a href="http://woolypigs.com/_kropf.html" rel="nofollow">http://woolypigs.com/_kropf.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
