<?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>Christoph Peter &#187; php</title>
	<atom:link href="http://www.chrillo.info/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrillo.info</link>
	<description>code and ideas</description>
	<lastBuildDate>Tue, 28 Sep 2010 12:47:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>php and mysql full text search across multiple tables using a relevancy score</title>
		<link>http://www.chrillo.info/2009/06/24/php-and-mysql-full-text-search-across-multiple-tables-using-a-relevancy-score/</link>
		<comments>http://www.chrillo.info/2009/06/24/php-and-mysql-full-text-search-across-multiple-tables-using-a-relevancy-score/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 13:07:51 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[match against]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=717</guid>
		<description><![CDATA[the setup I am currently building a paltfrom to host my air applications on. this is plattform includes a feedback and bug tracking forum application where users can post their thoughts and problems. In order for this to be helpfull i needed to implement full text search. the forum constists of basically two tables. 1.) [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2009/06/24/php-and-mysql-full-text-search-across-multiple-tables-using-a-relevancy-score/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>calculating the number of days between two dates</title>
		<link>http://www.chrillo.info/2008/11/09/calculating-the-number-of-days-between-two-dates/</link>
		<comments>http://www.chrillo.info/2008/11/09/calculating-the-number-of-days-between-two-dates/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 16:17:05 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[days]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=201</guid>
		<description><![CDATA[for a recent project I had to figure out how many days are between a given start and end date. My first very poor attempt was to split the dates and then get the monthes and then add up the days for each month. Very poor on performance. The easy solution: most modern programming languages [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/11/09/calculating-the-number-of-days-between-two-dates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using Anchors and GET variables</title>
		<link>http://www.chrillo.info/2008/02/18/using-anchors-and-get-variables/</link>
		<comments>http://www.chrillo.info/2008/02/18/using-anchors-and-get-variables/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 15:25:51 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[Anchor]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[scrollTo]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/2008/02/18/using-anchors-and-get-variables/</guid>
		<description><![CDATA[Well in general it is impossible to use them both. So http://www.yourdomain.com/yourpage.php?get=fubar#anchor1 is not going to work in most browsers, so we want to forget about that. I solved this problem with a little javascript workaround and an additional GET varibale. So step one is that your links would have to include a get variable [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/02/18/using-anchors-and-get-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Mysql Data in Flash via php</title>
		<link>http://www.chrillo.info/2008/01/20/using-mysql-data-in-flash-via-php/</link>
		<comments>http://www.chrillo.info/2008/01/20/using-mysql-data-in-flash-via-php/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 18:20:28 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Tech Questions]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/2008/01/20/using-mysql-data-in-flash-via-php/</guid>
		<description><![CDATA[In this post I want to describe a very simple technique I use in order to read Mysql data into flash via a php-dynamically created xml file. So what do you need to get this work: a Mysql Database filled with Data of your choice a php capable webserver, if you dont want to upload [...]]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/01/20/using-mysql-data-in-flash-via-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>www.akutron.com</title>
		<link>http://www.chrillo.info/2008/01/08/wwwakutroncom/</link>
		<comments>http://www.chrillo.info/2008/01/08/wwwakutroncom/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 08:47:59 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[akutron]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/2008/01/08/wwwakutroncom/</guid>
		<description><![CDATA[I created this website during my internship in kiew for the technology company Akutron. its nothing really special, just some basic html css and a little php for the different languages, although the translations never got done.&#160;www.akutron.com]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/01/08/wwwakutroncom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash &#8211; php &#8211; MySql Filesystem</title>
		<link>http://www.chrillo.info/2008/01/07/flash-php-mysql-filesystem/</link>
		<comments>http://www.chrillo.info/2008/01/07/flash-php-mysql-filesystem/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 10:17:37 +0000</pubDate>
		<dc:creator>Christoph Peter</dc:creator>
				<category><![CDATA[home server]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[browserbased]]></category>
		<category><![CDATA[Filesystem]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Webstorage]]></category>

		<guid isPermaLink="false">http://www.chrillo.info/?p=13</guid>
		<description><![CDATA[I am working on a browser based flash UI]]></description>
		<wfw:commentRss>http://www.chrillo.info/2008/01/07/flash-php-mysql-filesystem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.chrillo.info @ 2012-02-08 22:56:04 -->
