<?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: WordPress Database Functions</title>
	<atom:link href="http://wpengineer.com/wordpress-database-functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpengineer.com/wordpress-database-functions/</link>
	<description>WordPress News, Hacks, Tipps, Tutorials, Plugins and Themes</description>
	<lastBuildDate>Sat, 13 Mar 2010 18:21:42 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dameer</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-3403</link>
		<dc:creator>dameer</dc:creator>
		<pubDate>Thu, 04 Feb 2010 13:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-3403</guid>
		<description>Just wanted to share something...
Let&#039;s suppose you&#039;ve created brand new table for the purpose of a plugin and want to insert some data. The following will not work:
&lt;code&gt;
$wpdb-&gt;insert( $wpdb-&gt;my_new_table, array( &#039;post_title&#039; =&gt; $mytitle ) );
&lt;/code&gt;
...you have to do it this way:
&lt;code&gt;
$wpdb-&gt;insert( $wpdb-&gt;prefix . &#039;my_new_table&#039;, array( &#039;post_title&#039; =&gt; $mytitle ) );
&lt;/code&gt;
Hopefully people will find it useful.</description>
		<content:encoded><![CDATA[<p>Just wanted to share something...<br />
Let's suppose you've created brand new table for the purpose of a plugin and want to insert some data. The following will not work:<br />
<code><br />
$wpdb-&gt;insert( $wpdb-&gt;my_new_table, array( 'post_title' =&gt; $mytitle ) );<br />
</code><br />
...you have to do it this way:<br />
<code><br />
$wpdb-&gt;insert( $wpdb-&gt;prefix . 'my_new_table', array( 'post_title' =&gt; $mytitle ) );<br />
</code><br />
Hopefully people will find it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tsalagi</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-3333</link>
		<dc:creator>Tsalagi</dc:creator>
		<pubDate>Fri, 22 Jan 2010 22:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-3333</guid>
		<description>Thanks for providing these functions. I am very interested in using these types of functions to add more functionality to my site. Where can I learn more information about how to put together such functions and where to use the syntax. For instance your use of get_var at the very beginning has an x and a x but it says get a single variable. What is the x and y for? And where can I learn about your use of absint,, prepare, escape and SET? Are these mysql query techniques or WordPress stuff? I sure would like to find a full fledged tutorial breaking all this stuff down so I can actually learn something other than how to copy and paste.</description>
		<content:encoded><![CDATA[<p>Thanks for providing these functions. I am very interested in using these types of functions to add more functionality to my site. Where can I learn more information about how to put together such functions and where to use the syntax. For instance your use of get_var at the very beginning has an x and a x but it says get a single variable. What is the x and y for? And where can I learn about your use of absint,, prepare, escape and SET? Are these mysql query techniques or WordPress stuff? I sure would like to find a full fledged tutorial breaking all this stuff down so I can actually learn something other than how to copy and paste.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-2957</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 08 Dec 2009 08:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-2957</guid>
		<description>Googling $wpdb brings up few resources relating to this rather useful set of wordpress functions. While the wordpress codex does provide some extensive coverage it isn&#039;t laid out as simple as this for those out there who may be new to php or those who need a quick and simple reference list. Nice one.</description>
		<content:encoded><![CDATA[<p>Googling $wpdb brings up few resources relating to this rather useful set of wordpress functions. While the wordpress codex does provide some extensive coverage it isn't laid out as simple as this for those out there who may be new to php or those who need a quick and simple reference list. Nice one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominic</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-1919</link>
		<dc:creator>Dominic</dc:creator>
		<pubDate>Mon, 26 Oct 2009 22:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-1919</guid>
		<description>Thanks for posting this. I&#039;ve been hand-coding all of my plugin SQL.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this. I've been hand-coding all of my plugin SQL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-1913</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 23 Oct 2009 21:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-1913</guid>
		<description>I second that, this is the best resource with examples that I could find online. More useful than the wordpress codex page.  thanks!</description>
		<content:encoded><![CDATA[<p>I second that, this is the best resource with examples that I could find online. More useful than the wordpress codex page.  thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FreewareMatter</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-1900</link>
		<dc:creator>FreewareMatter</dc:creator>
		<pubDate>Tue, 20 Oct 2009 13:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-1900</guid>
		<description>Very good post. I&#039;ve searched documents about $wpdb class, but there&#039;s no &quot;full&quot; document. This post helps me very much. Thank you.</description>
		<content:encoded><![CDATA[<p>Very good post. I've searched documents about $wpdb class, but there's no "full" document. This post helps me very much. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress&#8217;s WPDB Class</title>
		<link>http://wpengineer.com/wordpress-database-functions/#comment-1859</link>
		<dc:creator>WordPress&#8217;s WPDB Class</dc:creator>
		<pubDate>Wed, 14 Oct 2009 02:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=1746#comment-1859</guid>
		<description>[...] can find a nice introduction and examples at WP Engineer. Here&#8217;s a sample of how you would go about changing the title of a post with a certain [...]</description>
		<content:encoded><![CDATA[<p>[...] can find a nice introduction and examples at WP Engineer. Here&#8217;s a sample of how you would go about changing the title of a post with a certain [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
