<?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"
	>
<channel>
	<title>Comments on: Variables</title>
	<atom:link href="http://mgeisler.net/php-tutorial/variables/feed/" rel="self" type="application/rss+xml" />
	<link>http://mgeisler.net</link>
	<description>Adventures with Computers</description>
	<pubDate>Thu, 21 Aug 2008 18:00:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6-bleeding</generator>
		<item>
		<title>By: Martin Geisler</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-246472</link>
		<dc:creator>Martin Geisler</dc:creator>
		<pubDate>Thu, 24 Jul 2008 07:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-246472</guid>
		<description>&lt;p&gt;Cool, thanks for the review. As for WordPress, then you might be able to find a plugin for a contact page, I don't know. Or you can ask in the WordPress forums where the real experts hang out -- I'm just using a stock WordPress installation here :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Cool, thanks for the review. As for WordPress, then you might be able to find a plugin for a contact page, I don&#8217;t know. Or you can ask in the WordPress forums where the real experts hang out &#8212; I&#8217;m just using a stock WordPress installation here :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benny</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-246406</link>
		<dc:creator>Benny</dc:creator>
		<pubDate>Thu, 24 Jul 2008 05:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-246406</guid>
		<description>&lt;p&gt;Martin, I am really impress with what you have here. Your site have made me to understand some of the challenges I have had so far in my site design and twitching. It's the best tutorial on php that I have seen so far on the 'Net. (As a result, I have reviewed this page on Stumbleupon to create more visibility for you.)&lt;/p&gt;

&lt;p&gt;Maybe I should ask this question here.. "What is the best way to implement my 'Homepage' and 'Contactpage' on Wordpress at the moment using PHP? You could view my site &lt;a href="http://www.siriusforex.com" title="Siriusforex" rel="nofollow"&gt;Sirius Forex&lt;/a&gt; to see what I mean. Thank you.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Martin, I am really impress with what you have here. Your site have made me to understand some of the challenges I have had so far in my site design and twitching. It&#8217;s the best tutorial on php that I have seen so far on the &#8216;Net. (As a result, I have reviewed this page on Stumbleupon to create more visibility for you.)</p>
<p>Maybe I should ask this question here.. &#8220;What is the best way to implement my &#8216;Homepage&#8217; and &#8216;Contactpage&#8217; on Wordpress at the moment using PHP? You could view my site <a href="http://www.siriusforex.com" title="Siriusforex" rel="nofollow">Sirius Forex</a> to see what I mean. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaughn</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-213327</link>
		<dc:creator>Vaughn</dc:creator>
		<pubDate>Sun, 01 Jun 2008 22:38:41 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-213327</guid>
		<description>&lt;p&gt;These two appear to be the same to me&lt;/p&gt;

&lt;p&gt;This string will give you a little problem:&lt;/p&gt;

&lt;p&gt;$name = "Martin "mg" Geisler";
If you try it out, you’ll get an error. That’s because the parser expects the string to stop after the second double-quote, just before the word mg. The rest of the line is just garbage to the parser so it complains loud. Perhaps it would help if we escaped the double-quote? Exactly! The following string is correct:&lt;/p&gt;

&lt;p&gt;$name = "Martin "mg" Geisler";&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>These two appear to be the same to me</p>
<p>This string will give you a little problem:</p>
<p>$name = &#8220;Martin &#8220;mg&#8221; Geisler&#8221;;<br />
If you try it out, you’ll get an error. That’s because the parser expects the string to stop after the second double-quote, just before the word mg. The rest of the line is just garbage to the parser so it complains loud. Perhaps it would help if we escaped the double-quote? Exactly! The following string is correct:</p>
<p>$name = &#8220;Martin &#8220;mg&#8221; Geisler&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-115232</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sat, 15 Sep 2007 01:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-115232</guid>
		<description>&lt;p&gt;Thanks for the tutorial. Time is money and you are saving all of us time, it's like giving away money :-) Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. Time is money and you are saving all of us time, it&#8217;s like giving away money :-) Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umer</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-8709</link>
		<dc:creator>Umer</dc:creator>
		<pubDate>Wed, 23 Aug 2006 17:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-8709</guid>
		<description>&lt;p&gt;I have a form that returns a string like: "xyz, abc, def" and I want to put single quotes around each of these values before using this string in a query? how can that be done in php?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have a form that returns a string like: &#8220;xyz, abc, def&#8221; and I want to put single quotes around each of these values before using this string in a query? how can that be done in php?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Geisler</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-571</link>
		<dc:creator>Martin Geisler</dc:creator>
		<pubDate>Tue, 20 Sep 2005 07:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-571</guid>
		<description>&lt;p&gt;Thanks for the feedback!  I'm glad that my tutorial is still useful.&lt;/p&gt;

&lt;p&gt;As for the problems with the newline character, would it then be the typical problem with having to use &lt;code&gt;&#60;br/&#62;&lt;/code&gt; in the source to get a linebreak in the browser?  From the feedback I've gotten I can tell that this is a &lt;em&gt;very&lt;/em&gt; common mistake...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback!  I&#8217;m glad that my tutorial is still useful.</p>
<p>As for the problems with the newline character, would it then be the typical problem with having to use <code>&lt;br/&gt;</code> in the source to get a linebreak in the browser?  From the feedback I&#8217;ve gotten I can tell that this is a <em>very</em> common mistake&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://mgeisler.net/php-tutorial/variables/#comment-570</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 19 Sep 2005 21:12:08 +0000</pubDate>
		<guid isPermaLink="false">http://mgeisler.net/php-tutorial/variables/#comment-570</guid>
		<description>&lt;p&gt;Martin,&lt;/p&gt;

&lt;p&gt;Thanks for actually taking the time to write this tutorial -Everytime I teach myself a new language, new app or server configuration I swear I'm going to write a tutorial to save others some learning pains. (but I never do)&lt;/p&gt;

&lt;p&gt;Anyway, as far as I can tell the newline "\n" as you used it above doesn't work when passed to HTML.  I had to use "".  &lt;/p&gt;

&lt;p&gt;Thanks again for your efforts.&lt;/p&gt;

&lt;p&gt;Scott&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Martin,</p>
<p>Thanks for actually taking the time to write this tutorial -Everytime I teach myself a new language, new app or server configuration I swear I&#8217;m going to write a tutorial to save others some learning pains. (but I never do)</p>
<p>Anyway, as far as I can tell the newline &#8220;\n&#8221; as you used it above doesn&#8217;t work when passed to HTML.  I had to use &#8220;&#8221;.  </p>
<p>Thanks again for your efforts.</p>
<p>Scott</p>
]]></content:encoded>
	</item>
</channel>
</rss>
