<?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 on: Php For Dummies &#8211; Php Tutorial 7</title>
	<atom:link href="http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 19 May 2013 20:52:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Knk082</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2202</link>
		<dc:creator>Knk082</dc:creator>
		<pubDate>Mon, 08 Aug 2011 21:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2202</guid>
		<description><![CDATA[How would I get it to work with a form that takes a name and last name. Seems easier with one text field but with two I can&#039;t figure it out. I also would need it to print the first and last name into a text document]]></description>
		<content:encoded><![CDATA[<p>How would I get it to work with a form that takes a name and last name. Seems easier with one text field but with two I can&#039;t figure it out. I also would need it to print the first and last name into a text document</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flash4real</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2201</link>
		<dc:creator>flash4real</dc:creator>
		<pubDate>Mon, 08 Aug 2011 21:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2201</guid>
		<description><![CDATA[have you attempted it? send me the code i&#039;ll take a look at it.]]></description>
		<content:encoded><![CDATA[<p>have you attempted it? send me the code i&#039;ll take a look at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peromajstore</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2200</link>
		<dc:creator>peromajstore</dc:creator>
		<pubDate>Mon, 08 Aug 2011 21:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2200</guid>
		<description><![CDATA[It dont works with /a ..... only, with &quot;a&quot;
$handle = fopen(&#039;text.txt&#039; , &quot;a&quot;);
But if I enter the text, it saves it, but if i leave the field emptyt it wrote: Your file has been saved. 
What should be the problem?]]></description>
		<content:encoded><![CDATA[<p>It dont works with /a &#8230;.. only, with &#034;a&#034;<br />
$handle = fopen(&#039;text.txt&#039; , &#034;a&#034;);<br />
But if I enter the text, it saves it, but if i leave the field emptyt it wrote: Your file has been saved.<br />
What should be the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TsumiESM</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2199</link>
		<dc:creator>TsumiESM</dc:creator>
		<pubDate>Mon, 08 Aug 2011 20:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2199</guid>
		<description><![CDATA[Hello and thank you so much - I haven&#039;t written a program since the 90s and this is awesome, I wanted to ask a few questions.
First of all - I couldn&#039;t get the line &quot;$handle = fopen(&#039;text.txt&#039;, &#039;a&#039;)&quot; to work without putting the a inside inverted commas.  Is that normal?
Second, when I save the file, it doesn&#039;t write over itself but the text is added to the back end of the file; in other words if I save four different sentences, one at a time, the text file retains them all, is that correct? Thx]]></description>
		<content:encoded><![CDATA[<p>Hello and thank you so much &#8211; I haven&#039;t written a program since the 90s and this is awesome, I wanted to ask a few questions.<br />
First of all &#8211; I couldn&#039;t get the line &#034;$handle = fopen(&#039;text.txt&#039;, &#039;a&#039;)&#034; to work without putting the a inside inverted commas.  Is that normal?<br />
Second, when I save the file, it doesn&#039;t write over itself but the text is added to the back end of the file; in other words if I save four different sentences, one at a time, the text file retains them all, is that correct? Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flash4real</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2198</link>
		<dc:creator>flash4real</dc:creator>
		<pubDate>Mon, 08 Aug 2011 20:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2198</guid>
		<description><![CDATA[@TsumiESM Yes, the &#039;a&#039; should be in inverted commas.

Different letters do different things - &#039;a&#039; appends to the file. If you want it to overwrite, use &#039;w&#039; instead.]]></description>
		<content:encoded><![CDATA[<p>@TsumiESM Yes, the &#039;a&#039; should be in inverted commas.</p>
<p>Different letters do different things &#8211; &#039;a&#039; appends to the file. If you want it to overwrite, use &#039;w&#039; instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TsumiESM</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2197</link>
		<dc:creator>TsumiESM</dc:creator>
		<pubDate>Mon, 08 Aug 2011 19:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2197</guid>
		<description><![CDATA[@flash4real Ah, thank you thank you.  I gotta say I&#039;m really enjoying this.  The last program I wrote was in AppleBasic heh - this is fantastic, to be learning to code again.  Thank you.]]></description>
		<content:encoded><![CDATA[<p>@flash4real Ah, thank you thank you.  I gotta say I&#039;m really enjoying this.  The last program I wrote was in AppleBasic heh &#8211; this is fantastic, to be learning to code again.  Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lurviQ</title>
		<link>http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2196</link>
		<dc:creator>lurviQ</dc:creator>
		<pubDate>Mon, 08 Aug 2011 19:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphpfree.com/2011/08/php-for-dummies-php-tutorial-7/#comment-2196</guid>
		<description><![CDATA[does not work]]></description>
		<content:encoded><![CDATA[<p>does not work</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.098 seconds -->
