<?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>freude-code &#187; PHP</title>
	<atom:link href="http://www.freude-co.de/kategorie/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freude-co.de</link>
	<description>PHP, CakePHP und MySQL</description>
	<lastBuildDate>Tue, 06 Apr 2010 07:52:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>enum Felder mit cakephp auslesen</title>
		<link>http://www.freude-co.de/2010/01/24/enum-felder-mit-cakephp-auslesen/</link>
		<comments>http://www.freude-co.de/2010/01/24/enum-felder-mit-cakephp-auslesen/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:48:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Datenbank]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=294</guid>
		<description><![CDATA[Dieser Code kommt in das app_model.php /** * Get Enum Values * Snippet v0.1.3 * http://cakeforge.org/snippet/detail.php?type=snippet&#38;amp;id=112 * * Gets the enum values for MySQL 4 and 5 to use in selectTag() */ function getEnumValues($columnName=null, $respectDefault=false) { if ($columnName==null) { return array(); } //no field specified //Get the name of the table $db =&#38;amp; ConnectionManager::getDataSource($this-&#62;useDbConfig); $tableName [...]]]></description>
		<wfw:commentRss>http://www.freude-co.de/2010/01/24/enum-felder-mit-cakephp-auslesen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>die neuesten Einträge mit cakephp bekommen</title>
		<link>http://www.freude-co.de/2010/01/24/die-neuesten-eintrage-mit-cakephp-bekommen/</link>
		<comments>http://www.freude-co.de/2010/01/24/die-neuesten-eintrage-mit-cakephp-bekommen/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[find]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=291</guid>
		<description><![CDATA[function getNewest( $limit = 50 ) { $data = $this-&#62;find(&#039;all&#039;, array( &#039;order&#039; =&#62; $this-&#62;name .&#039;.id DESC&#039;, &#039;limit&#039; =&#62; $limit) ); return $data; }]]></description>
		<wfw:commentRss>http://www.freude-co.de/2010/01/24/die-neuesten-eintrage-mit-cakephp-bekommen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>URL splitten</title>
		<link>http://www.freude-co.de/2009/11/02/url-splitten/</link>
		<comments>http://www.freude-co.de/2009/11/02/url-splitten/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 18:48:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=273</guid>
		<description><![CDATA[function process_url( $url ) { $processed_url = parse_url( $url ); $query_string = $processed_url[ &#039;query&#039; ]; $query_string = explode( &#039;&#38;&#039;, $query_string ); $args = array( ); // return array foreach( $query_string as $chunk ) { $chunk = explode( &#039;=&#039;, $chunk ); if ( count( $chunk ) == 2 ) { list( $key, $val ) = $chunk; [...]]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/11/02/url-splitten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pagination mit cakePHP erstellen</title>
		<link>http://www.freude-co.de/2009/10/28/pagination-mit-cakephp-erstellen/</link>
		<comments>http://www.freude-co.de/2009/10/28/pagination-mit-cakephp-erstellen/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 09:55:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Paginator]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=270</guid>
		<description><![CDATA[Auf der Seite von switchonthecode wird in einem Tutorial beschrieben wie die Pagination von cakePHP eingesetzt werden kann. Zum Tutorial]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/10/28/pagination-mit-cakephp-erstellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login mit jQuery und CakePHP</title>
		<link>http://www.freude-co.de/2009/10/28/login-mit-jquery-und-cakephp/</link>
		<comments>http://www.freude-co.de/2009/10/28/login-mit-jquery-und-cakephp/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 09:13:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Login]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=264</guid>
		<description><![CDATA[auf hackthenet wird beschrieben, wie man einen Login mit Hilfe von jQuery und CakePHP erstellt. zum Tutorial]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/10/28/login-mit-jquery-und-cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Propelprojekt vorbereiten</title>
		<link>http://www.freude-co.de/2009/10/07/propelprojekt-vorbereiten/</link>
		<comments>http://www.freude-co.de/2009/10/07/propelprojekt-vorbereiten/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 08:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Datenbank]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Pear]]></category>
		<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Models]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=257</guid>
		<description><![CDATA[Der propel Generator benötigt eine XML Datei um ein Datenbankschema zu erstellen. Diese heisst sinnigerweise dann auch schema.xml. Der Aufbau ist eigentlich selbsterklärend. Hier habe ich mal ein Beispiel von der propel Seite: &#60;?xml version=&#34;1.0&#34; encoding=&#34;ISO-8859-1&#34; standalone=&#34;no&#34;?&#62; &#60;database name=&#34;bookstore&#34; defaultIdMethod=&#34;native&#34;&#62; &#60;table name=&#34;book&#34; description=&#34;Book Table&#34;&#62; &#60;column name=&#34;book_id&#34; type=&#34;integer&#34; primaryKey=&#34;true&#34; autoIncrement=&#34;true&#34; required=&#34;true&#34; description=&#34;Book Id&#34;/&#62; &#60;column name=&#34;title&#34; type=&#34;varchar&#34; [...]]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/10/07/propelprojekt-vorbereiten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Propel installieren</title>
		<link>http://www.freude-co.de/2009/10/04/propel-installieren/</link>
		<comments>http://www.freude-co.de/2009/10/04/propel-installieren/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 09:22:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Datenbank]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Pear]]></category>
		<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=249</guid>
		<description><![CDATA[Propel wird verwendet um Objekte mit Daten in einer Datenbank zu speichern. Es ist eine Schicht zwischen dem Datenspeicher und der Programmierlogik. Zunächst muss man Propel über den PEAR Installer installieren. Da Propel eine Abhängigkeit zu anderen PEAR Paketen enthält, muss man als erstes diese installieren. Dies geschieht über die Konsole. Wir fangen mit dem [...]]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/10/04/propel-installieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syntax regulärer Ausdrücke</title>
		<link>http://www.freude-co.de/2009/08/18/syntax-regularer-ausdrucke/</link>
		<comments>http://www.freude-co.de/2009/08/18/syntax-regularer-ausdrucke/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 12:06:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[allgemein]]></category>
		<category><![CDATA[Codeschnipsel]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=232</guid>
		<description><![CDATA[$suchmuster= $zeichenkette= Ausgabe mit preg_match_all( $suchmuster, $zeichenkette, $match): Beschreibung: &#8216;/foo/&#8217; foo Array ( [0] =&#62; Array ( [0] =&#62; foo ) ) die Zeichenkette &#8220;foo&#8221; &#8216;/^foo/&#8217; &#8220;foowAaSD_gci.&#8221; Array ( [0] =&#62; Array ( [0] =&#62; foo ) ) &#8220;foo&#8221; am Anfang der Zeichenkette &#8216;/foo$/&#8217; &#8220;wASD_gi.foo&#8221; Array ( [0] =&#62; Array ( [0] =&#62; foo ) [...]]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/08/18/syntax-regularer-ausdrucke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Die google Maps API für PHP</title>
		<link>http://www.freude-co.de/2009/06/11/die-google-maps-api-fur-php/</link>
		<comments>http://www.freude-co.de/2009/06/11/die-google-maps-api-fur-php/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 17:44:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=203</guid>
		<description><![CDATA[Wer Google Maps in seine Webseite einbauen will, kann mit Einrico Zimuel&#8217;s einfachem Beispiel sofort loslegen. Hier gibt es mehr zum Thema.]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/06/11/die-google-maps-api-fur-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free cake book</title>
		<link>http://www.freude-co.de/2009/06/10/free-cake-book/</link>
		<comments>http://www.freude-co.de/2009/06/10/free-cake-book/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:17:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.freude-co.de/?p=201</guid>
		<description><![CDATA[Matt Curry hat ein Buch über cake geschrieben, das über den Anfänger Status hinaus geht. Er nennt es bescheiden &#8220;Super Awesome Advanced CakePHP Tips&#8221; Blabla dazu gibt es in seinem Blog.]]></description>
		<wfw:commentRss>http://www.freude-co.de/2009/06/10/free-cake-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
