<?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 for Talk In Code</title>
	<atom:link href="http://www.talkincode.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.talkincode.com</link>
	<description>Code tips, snippets and resources.</description>
	<pubDate>Sat, 11 Oct 2008 19:57:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>Comment on JavaScript Scrolling Box Marquee Replacement by Tech</title>
		<link>http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-889</link>
		<dc:creator>Tech</dc:creator>
		<pubDate>Sun, 21 Sep 2008 00:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-889</guid>
		<description>@Jackie - You have either missed out the last paragraph - the empty one.  Or you have got the offset height wrong.  Try fiddling with the number 150 until you get the right result.
&lt;code class="javascript"&gt;if(el.scrollTop &#62;= el.scrollHeight-150){
&#160;el.scrollTop = 0;
};&lt;/code&gt;
Also, take a look at the debug section, it might point you in the right direction.</description>
		<content:encoded><![CDATA[<p>@Jackie - You have either missed out the last paragraph - the empty one.  Or you have got the offset height wrong.  Try fiddling with the number 150 until you get the right result.<br />
<code class="javascript">if(el.scrollTop &gt;= el.scrollHeight-150){<br />
&nbsp;el.scrollTop = 0;<br />
};</code><br />
Also, take a look at the debug section, it might point you in the right direction.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Scrolling Box Marquee Replacement by Jackie</title>
		<link>http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-885</link>
		<dc:creator>Jackie</dc:creator>
		<pubDate>Sat, 20 Sep 2008 03:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-885</guid>
		<description>I used your code and when it loads it scrolls fine up until the last paragraph.  I need it to loop continuously until they leave the page.  What did I do wrong?</description>
		<content:encoded><![CDATA[<p>I used your code and when it loads it scrolls fine up until the last paragraph.  I need it to loop continuously until they leave the page.  What did I do wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding Missing Values In A MySQL Table by Tech</title>
		<link>http://www.talkincode.com/finding-missing-values-in-a-mysql-table-501.html#comment-882</link>
		<dc:creator>Tech</dc:creator>
		<pubDate>Fri, 19 Sep 2008 10:38:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/?p=501#comment-882</guid>
		<description>Odd this... It works in MySQL query browser, so I thought it must be an issue with phpMyAdmin.  And it was!  For some reason it has a problem with the table.column reference in the having command.

I found the solution was to add quotes around the name, like this:

&lt;code class="mysql"&gt;HAVING 't1.ID' &lt; MIN(t2.ID) - 1&lt;/code&gt;

Let us know if that works!</description>
		<content:encoded><![CDATA[<p>Odd this&#8230; It works in MySQL query browser, so I thought it must be an issue with phpMyAdmin.  And it was!  For some reason it has a problem with the table.column reference in the having command.</p>
<p>I found the solution was to add quotes around the name, like this:</p>
<p><code class="mysql">HAVING 't1.ID' < MIN(t2.ID) - 1</code></p>
<p>Let us know if that works!</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding Missing Values In A MySQL Table by Jamie Bicknell</title>
		<link>http://www.talkincode.com/finding-missing-values-in-a-mysql-table-501.html#comment-881</link>
		<dc:creator>Jamie Bicknell</dc:creator>
		<pubDate>Fri, 19 Sep 2008 09:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/?p=501#comment-881</guid>
		<description>Nice Work!

My MySql keeps pulling up an error on the last SQL statement. There error is: #1054 - Unknown column 't1.id' in 'having clause' 

Versions are:
   phpMyAdmin - 2.11.5.2
   MySQL client version: 5.0.45

Any ideas?</description>
		<content:encoded><![CDATA[<p>Nice Work!</p>
<p>My MySql keeps pulling up an error on the last SQL statement. There error is: #1054 - Unknown column &#8216;t1.id&#8217; in &#8216;having clause&#8217; </p>
<p>Versions are:<br />
   phpMyAdmin - 2.11.5.2<br />
   MySQL client version: 5.0.45</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single Quotes Or Double Quotes With PHP? by myname</title>
		<link>http://www.talkincode.com/single-quotes-or-double-quotes-with-php-213.html#comment-878</link>
		<dc:creator>myname</dc:creator>
		<pubDate>Wed, 17 Sep 2008 15:56:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/?p=213#comment-878</guid>
		<description>Well,for one you do not measure the time php take to parse that code; then it's only going to be parsed once in any case. So what you are measuring can not show the effect you are looking for (quote The reason is that when PHP encounters a double quote is parses the string to see what is inside endquote). Finally the concatenation operator is going to be called 20 000 times. 

I must admit I do not understand why the latter doesnot affect your "double escaped quotes"</description>
		<content:encoded><![CDATA[<p>Well,for one you do not measure the time php take to parse that code; then it&#8217;s only going to be parsed once in any case. So what you are measuring can not show the effect you are looking for (quote The reason is that when PHP encounters a double quote is parses the string to see what is inside endquote). Finally the concatenation operator is going to be called 20 000 times. </p>
<p>I must admit I do not understand why the latter doesnot affect your &#8220;double escaped quotes&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Scrolling Box Marquee Replacement by Tech</title>
		<link>http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-873</link>
		<dc:creator>Tech</dc:creator>
		<pubDate>Mon, 15 Sep 2008 07:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-873</guid>
		<description>@Erika - I haven't been able to figure out why it does that.  I gut feeling is that that it is something to do with the pseudo-recursion that the function uses.  Almost like it is doubling up the function calls.  Anyone got any other ideas?</description>
		<content:encoded><![CDATA[<p>@Erika - I haven&#8217;t been able to figure out why it does that.  I gut feeling is that that it is something to do with the pseudo-recursion that the function uses.  Almost like it is doubling up the function calls.  Anyone got any other ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Scrolling Box Marquee Replacement by Erika</title>
		<link>http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-871</link>
		<dc:creator>Erika</dc:creator>
		<pubDate>Sat, 13 Sep 2008 23:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/javascript-scrolling-box-marquee-replacement-52.html#comment-871</guid>
		<description>I was wondering if anyone figured out how to stop the marquee from speeding up after the mouse goes over it.
Thanks,
Erika</description>
		<content:encoded><![CDATA[<p>I was wondering if anyone figured out how to stop the marquee from speeding up after the mouse goes over it.<br />
Thanks,<br />
Erika</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enable Custom Field Search In Wordpress by Enable Custom Field Searching With Wordpress 2.6 &#124; Talk In Code</title>
		<link>http://www.talkincode.com/enable-custom-field-search-in-wordpress-49.html#comment-836</link>
		<dc:creator>Enable Custom Field Searching With Wordpress 2.6 &#124; Talk In Code</dc:creator>
		<pubDate>Fri, 05 Sep 2008 12:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/enable-custom-field-search-in-wordpress-49.html#comment-836</guid>
		<description>[...] have previously talked about enable custom field search in Wordpress, but that involved altering the main Wordpress files, which is a big [...]</description>
		<content:encoded><![CDATA[<p>[...] have previously talked about enable custom field search in Wordpress, but that involved altering the main Wordpress files, which is a big [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Links From A HTML File With PHP by Mark James</title>
		<link>http://www.talkincode.com/extract-links-from-a-html-file-with-php-90.html#comment-802</link>
		<dc:creator>Mark James</dc:creator>
		<pubDate>Thu, 04 Sep 2008 09:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/extract-links-from-a-html-file-with-php-90.html#comment-802</guid>
		<description>Cool Scripts.</description>
		<content:encoded><![CDATA[<p>Cool Scripts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Save Browser Output To A File With PHP Output Buffering Functions by Jesse</title>
		<link>http://www.talkincode.com/save-browser-output-to-a-file-with-php-output-buffering-functions-102.html#comment-754</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Wed, 03 Sep 2008 02:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.talkincode.com/save-browser-output-to-a-file-with-php-output-buffering-functions-102.html#comment-754</guid>
		<description>Thanks man. Easy stuff but hard to find all in the same place with good examples</description>
		<content:encoded><![CDATA[<p>Thanks man. Easy stuff but hard to find all in the same place with good examples</p>
]]></content:encoded>
	</item>
</channel>
</rss>
