<?xml version="1.0" encoding="ISO-8859-1"?>
<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>Web Dev Intensive &#187; php</title>
	<atom:link href="http://wd.onepotcooking.com/category/php/feed" rel="self" type="application/rss+xml" />
	<link>http://wd.onepotcooking.com</link>
	<description>with XHTML, CSS, Javascript, JQuery, PHP, MySQL</description>
	<lastBuildDate>Sat, 17 Dec 2011 14:48:06 +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>Class 7 &#8211; Examples of using strings in PHP</title>
		<link>http://wd.onepotcooking.com/2010/11/07/class-7-examples-of-using-strings-in-php/</link>
		<comments>http://wd.onepotcooking.com/2010/11/07/class-7-examples-of-using-strings-in-php/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 00:29:40 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[class7]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[strings]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=2483</guid>
		<description><![CDATA[Defining strings Here are some examples of defining strings in PHP: $myString1 = "Hello"; //simple string definition $myString2 = 'Hello'; //same as above, but with single quotes $myString3 = "{$myString1}, how are you?"; //myString3 now contains "Hello, how are you?" - only works with double quotes $myString4 = $myString1 . ' ' . $myString2; //myString4 [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2010/11/07/class-7-examples-of-using-strings-in-php//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 8 &#8211; In-class-assignment</title>
		<link>http://wd.onepotcooking.com/2010/07/27/class-8-in-class-assignment/</link>
		<comments>http://wd.onepotcooking.com/2010/07/27/class-8-in-class-assignment/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 17:35:19 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[assignments]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=2288</guid>
		<description><![CDATA[This assignment is meant to give practice to the most important parts of PHP besides database integration, which is addressed in separate assignments.  The core concepts are include files and passing data (a.k.a. persistent data) using forms, links, and cookies. Your assignment is to make a site consisting of four web pages: Home (index.php) News [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2010/07/27/class-8-in-class-assignment//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 8 &#8211; A simple CMS for SQL CRUD</title>
		<link>http://wd.onepotcooking.com/2010/04/18/class-8-a-simple-cms-for-sql-crud/</link>
		<comments>http://wd.onepotcooking.com/2010/04/18/class-8-a-simple-cms-for-sql-crud/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 18:51:50 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[cms]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[class 8]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=1894</guid>
		<description><![CDATA[Working off of the example code from the Basic SQL example files, here is a slightly more sophisticated set of pages that when used together, create a sort of Content Management System for our animals application. How it works Here is a user flow diagram outlining how this application fits together.  Below the diagram is [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2010/04/18/class-8-a-simple-cms-for-sql-crud//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 7 &#8211; The XML declaration in your XHTML code can cause problems if your server has PHP short tags enabled</title>
		<link>http://wd.onepotcooking.com/2010/04/11/class-7-the-xml-declaration-in-your-xhtml-code-can-cause-problems-if-your-server-has-php-short-tags-enabled/</link>
		<comments>http://wd.onepotcooking.com/2010/04/11/class-7-the-xml-declaration-in-your-xhtml-code-can-cause-problems-if-your-server-has-php-short-tags-enabled/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 16:57:24 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[class 7]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=1827</guid>
		<description><![CDATA[One potential problem that you may come across when putting XHTML code inside your PHP files is that the XML declaration tag may confuse the PHP server. Short tags Some PHP servers, including ours, are set up to accept &#8220;short tags&#8221;, which are shortcut versions of some PHP commands.  For example, on our server, you [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2010/04/11/class-7-the-xml-declaration-in-your-xhtml-code-can-cause-problems-if-your-server-has-php-short-tags-enabled//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 11 &#8211; Misc links for today</title>
		<link>http://wd.onepotcooking.com/2009/12/12/some-links-from-todays-discussion/</link>
		<comments>http://wd.onepotcooking.com/2009/12/12/some-links-from-todays-discussion/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 22:25:21 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[class 11]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=1410</guid>
		<description><![CDATA[CSS contents and browser compatibility from Quirksmode.org.  This chart shows a list of CSS properties and the differences in browser support for them. Image resizing in PHP &#8211; there are two sets of libraries that can do image resizing and other processing in PHP: MagickWand with ImageMagick and GD.  Our server only has the GD [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/12/12/some-links-from-todays-discussion//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 10 &#8211; An MVC Social Network Example</title>
		<link>http://wd.onepotcooking.com/2009/12/05/class-10-an-mvc-example-social-network/</link>
		<comments>http://wd.onepotcooking.com/2009/12/05/class-10-an-mvc-example-social-network/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 13:29:26 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[class 10]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=480</guid>
		<description><![CDATA[Let&#8217;s say that we are building a social network.  What we call a social network is a site that has a bunch of users, and those users can decide to be &#8220;friends&#8221; with any other user. You can view this example live here. The Views There will be four pages that the user sees: Register [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/12/05/class-10-an-mvc-example-social-network//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 9 &#8211; Sessions in PHP</title>
		<link>http://wd.onepotcooking.com/2009/11/23/class-10-sessions-in-php/</link>
		<comments>http://wd.onepotcooking.com/2009/11/23/class-10-sessions-in-php/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 03:41:37 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[class 9]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=470</guid>
		<description><![CDATA[In your readings, you may have come across mention of PHP Sessions. Sessions are another mechanism, in addition to the $_GET, $_POST, and $_COOKIE variables that allow you to &#8220;maintain state&#8221;, meaning to pass data from one page to another. Session variables are just like cookies, but easier PHP provides a set of functions that [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/11/23/class-10-sessions-in-php//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class 9 &#8211; Sanitizing User-Generated Content</title>
		<link>http://wd.onepotcooking.com/2009/11/23/santizing-user-generated-content/</link>
		<comments>http://wd.onepotcooking.com/2009/11/23/santizing-user-generated-content/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 22:06:41 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[class 9]]></category>
		<category><![CDATA[injection attack]]></category>
		<category><![CDATA[sanitizing]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=444</guid>
		<description><![CDATA[As a general rule, any data that comes from a user is not to be trusted.  So anytime you are dealing with data that may (or may not) have originated from a user, you need to sanitize that data before doing anything else with it.  Think of it as basic web hygiene, akin to washing [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/11/23/santizing-user-generated-content//feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Class 8 &#8211; Passing Data With Forms</title>
		<link>http://wd.onepotcooking.com/2009/11/06/passing-data-with-forms/</link>
		<comments>http://wd.onepotcooking.com/2009/11/06/passing-data-with-forms/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 14:16:24 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[class 8]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=530</guid>
		<description><![CDATA[Understanding how to use the $_GET, $_POST, and $_REQUEST variables is critical to creating a site in PHP.  So here is an in-depth analysis of how data is passed from one page to another using forms. In our earlier post, we discussed the concept of persistent data.  Each web page is like a distinct application [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/11/06/passing-data-with-forms//feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Class 7 &#8211; Introduction to Arrays in PHP</title>
		<link>http://wd.onepotcooking.com/2009/11/01/introduction-to-arrays-in-php/</link>
		<comments>http://wd.onepotcooking.com/2009/11/01/introduction-to-arrays-in-php/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:13:37 +0000</pubDate>
		<dc:creator>amos</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[class 7]]></category>
		<category><![CDATA[multidimensional]]></category>

		<guid isPermaLink="false">http://wd.onepotcooking.com/?p=1308</guid>
		<description><![CDATA[To complete the templatizing assignment, you will need to have a good understanding of arrays.  This post is meant to be read in addition to the readings from the assignment post, to give you an introductory description of arrays to help you think about arrays clearly. Simple arrays An array is a list of data.  [...]]]></description>
		<wfw:commentRss>http://wd.onepotcooking.com/2009/11/01/introduction-to-arrays-in-php//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

