<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>South Bay Media Blog</title>
	<atom:link href="http://www.southbaymedia.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.southbaymedia.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 30 Dec 2009 07:02:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Codeigniter 1.7.2 Adds a New Class Library (Shopping Cart Class)</title>
		<link>http://www.southbaymedia.com/blog/codeigniter-1-7-2-adds-a-new-class-library-shopping-cart-class/</link>
		<comments>http://www.southbaymedia.com/blog/codeigniter-1-7-2-adds-a-new-class-library-shopping-cart-class/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 08:52:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Shopping Cart]]></category>

		<guid isPermaLink="false">http://blog.southbaymedia.com/?p=35</guid>
		<description><![CDATA[The latest release of Codeigniter 1.7.2 adds a new shopping cart class to the library which permits items to be added to a session that stays active while a user is browsing the site. Like all Codeigniter libraries, initilization is done as follows: $this->load->library('cart'); And items are added to the cart as follows: $data = [...]]]></description>
			<content:encoded><![CDATA[<p>The latest release of <a href="http://codeigniter.com/">Codeigniter</a> 1.7.2 adds a new shopping cart class to the library which permits items to be added to a session that stays active while a user is browsing the site.</p>
<p>Like all Codeigniter libraries, initilization is done as follows:</p>
<pre class="brush:php">
$this->load->library('cart');
</pre>
<p> And items are added to the cart as follows:</p>
<pre class="brush:php">$data = array(
               'id'      =&gt; 'sku_123ABC',
               'qty'     =&gt; 1,
               'price'   =&gt; 39.95,
               'name'    =&gt; 'T-Shirt',
               'options' =&gt; array('Size' =&gt; 'L', 'Color' =&gt; 'Red')
            );

$this-&gt;cart-&gt;insert($data);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.southbaymedia.com/blog/codeigniter-1-7-2-adds-a-new-class-library-shopping-cart-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Querying Data From a WordPress Blog</title>
		<link>http://www.southbaymedia.com/blog/querying-data-from-a-wordpress-blog/</link>
		<comments>http://www.southbaymedia.com/blog/querying-data-from-a-wordpress-blog/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 07:46:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Taxonomy]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.southbaymedia.com/blog/?p=52</guid>
		<description><![CDATA[Some of the latest versions of WordPress use a new taxonomy database schema which can make it a bit tricky to get at and display posts data from MySQL. Here is a query we use to display the latest news and events throughout our site: SELECT wp_posts . * FROM wp_posts LEFT JOIN wp_postmeta ON [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the latest versions of WordPress use a new taxonomy database schema which can make it a bit tricky to get at and display posts data from MySQL. Here is a query we use to display the latest news and events throughout our site:</p>
<pre class="brush:sql">
SELECT      wp_posts . *
FROM        wp_posts
LEFT        JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id
LEFT        JOIN wp_term_relationships ON ( wp_posts.ID = wp_term_relationships.object_id )
LEFT        JOIN wp_term_taxonomy ON ( wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id )
WHERE       wp_postmeta.meta_key = "_edit_last"
AND         wp_posts.post_status = "publish"
AND         wp_term_taxonomy.taxonomy = "category"
AND         wp_term_taxonomy.term_id
IN          ( [Put your category ID here] )
ORDER BY    wp_posts.post_date DESC
</pre>
<p>The IN clause is where you would want to put the ID from the category you want displayed. This query has been tested and works with WordPress version 2.9</p>
]]></content:encoded>
			<wfw:commentRss>http://www.southbaymedia.com/blog/querying-data-from-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrated WordPress Blogs</title>
		<link>http://www.southbaymedia.com/blog/integrated-wordpress-blogs/</link>
		<comments>http://www.southbaymedia.com/blog/integrated-wordpress-blogs/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:58:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News & Events]]></category>
		<category><![CDATA[Related Offers]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.southbaymedia.com/?p=3</guid>
		<description><![CDATA[Some of our clients have never before heard of WordPress or do not have much experience with blogging systems. In short, WordPress is an open source (free) blogging platform that allows you to easily create new content on your web site such as company news or other information you would like updated and posted immediately [...]]]></description>
			<content:encoded><![CDATA[<p>Some of our clients have never before heard of WordPress or do not have much experience with blogging systems. In short, WordPress is an open source (free) blogging platform that allows you to easily create new content on your web site such as company news or other information you would like updated and posted immediately on your web site.  WordPress is by far one of the most popular and easy to use blogging systems available today.</p>
<p>This blog currently uses an integrated installation of WordPress 2.9 with our own custom theme applied and gives the appearance of a seamless transition between our regular web site and our blog/news and events section.  The purpose of this post is to let our current and prospective clients know that we can easily integrate WordPress into your existing or new web site.</p>
<p>Adding a blog to your existing or new web site is a great way to increase traffic since each new post you add creates a new page for search engines to index. If you would like to learn more about WordPress <a title="Learn about wordpress" href="http://wordpress.org/about/" target="_blank">click here</a>.</p>
<p>If you would like to add a custom integrated WordPress blog to your new or existing web site, please <a title="Contact Us" href="http://www.southbaymedia.com/contact" target="_self">click here</a> to contact us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.southbaymedia.com/blog/integrated-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>South Bay Media Gets a New Design For 2010</title>
		<link>http://www.southbaymedia.com/blog/south-bay-media-gets-a-new-design-for-2010/</link>
		<comments>http://www.southbaymedia.com/blog/south-bay-media-gets-a-new-design-for-2010/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 06:28:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News & Events]]></category>

		<guid isPermaLink="false">http://blog.southbaymedia.com/?p=19</guid>
		<description><![CDATA[We like to keep things fresh, which is why we have updated our site with a new design for 2010.  Aside from the new design layout, the most significant new addition features an integrated installation of the latest version of WordPress which we now use for our blogging and news and events platform.  In addition [...]]]></description>
			<content:encoded><![CDATA[<p>We like to keep things fresh, which is why we have updated our site with a new design for 2010.  Aside from the new design layout, the most significant new addition features an integrated installation of the latest version of WordPress which we now use for our blogging and news and events platform.  In addition to WordPress, we are now using jQuery and a handful of custom plug-ins.</p>
<p>One of our goals with the new design is to streamline the way we interact and do business with our clients. We want to make it as easy and straightforward as possible from the initial steps of first contact to delivering a functional web site that meets or exceeds your business objectives.</p>
<p>Stay tuned for our new and improved quoting system which will take you step by step through the process of defining requirements and gathering all pertinent information we need to quickly get started on designing you a new site or re-designing your existing web site.</p>
<p>Thanks for visiting and feel free to provide any feedback on the latest design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.southbaymedia.com/blog/south-bay-media-gets-a-new-design-for-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

