<?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"
	>

<channel>
	<title>KnowTeBook - Webworkers Daily Milk &#187; php</title>
	<atom:link href="http://www.knowtebook.com/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.knowtebook.com</link>
	<description>A community blog about design, ideas, trends, wordpress &#38; more.</description>
	<pubDate>Tue, 27 Jul 2010 08:46:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=9</generator>
	<language>en</language>
			<item>
		<title>Use A Body ID To Style Your Website In CSS</title>
		<link>http://www.knowtebook.com/use-a-body-id-to-style-your-website-in-css-2-1337.htm</link>
		<comments>http://www.knowtebook.com/use-a-body-id-to-style-your-website-in-css-2-1337.htm#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:16:50 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[tutorials]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.knowtebook.com/?p=1337</guid>
		<description><![CDATA[Trevor Davis wrote a convincing article why using ID&#8217;s in the body tag makes sense. I often use it to keep different page layouts sorted and inserted an id manually. Now he shows an interesting way using PHP and/or Wordpress. (...)]]></description>
			<content:encoded><![CDATA[<p>Trevor Davis wrote a convincing article why using ID&#8217;s in the body tag makes sense. I often use it to keep different page layouts sorted and inserted an id manually. Now he shows an interesting way using PHP and/or Wordpress. Check out the <a target="_blank" href="http://trevordavis.net/play/set-a-body-id/about/" target="_blank">demo</a>.</p>
<p><a target="_blank" title="css" href="http://trevordavis.net/blog/tutorial/set-a-body-id/" target="_blank"><img src="http://farm1.static.flickr.com/51/144060002_515cc375d7.jpg" border="0" alt="css" title="144060002 515cc375d7 Use A Body ID To Style Your Website In CSS   css" /></a><br />
<small><a target="_blank" title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://www.knowtebook.com/wp-content/plugins/photo_dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" title="cc Use A Body ID To Style Your Website In CSS   css" /></a> <a target="_blank" href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a target="_blank" title="Raphael Goetter" href="http://www.flickr.com/photos/29174632@N00/144060002/" target="_blank">Raphael Goetter</a></small></p>
<p><span id="more-1337"></span></p>
<h2>Reasons to use id&#8217;s in Body</h2>
<ul>
<li>Maybe your design has different colors depending upon which section you are in. Instead of having to touch the markup, you can just modify the CSS depending upon the id on the <code>body</code>.</li>
<li>You can control the current states for your navigation.</li>
<li>Maybe the markup on your homepage is a little different than subpages, so instead of creating a different template, just stick in an if statement.</li>
</ul>
<h2>Example</h2>
<h3>Body</h3>
<pre name="code" class="php">

&lt;body id=&quot;&lt;?=$bodyId; ?&gt;&quot;&gt;
</pre>
<h3>Function</h3>
<pre name="code" class="php">

&lt;?php

function exampleSetBodyId() {

$path = $_SERVER[&#039;REQUEST_URI&#039;];
if(!isset($bodyId)) {

if(eregi(&#039;^/play/set-a-body-id/about/&#039;,$path) == 1) {

$bodyId = &#039;about&#039;;

} else if(eregi(&#039;^/play/set-a-body-id/blog/&#039;,$path) == 1) {

$bodyId = &#039;blog&#039;;

} else if(eregi(&#039;^/play/set-a-body-id/contact/&#039;,$path) == 1) {

$bodyId = &#039;contact&#039;;

} else if(eregi(&#039;^/play/set-a-body-id/work/&#039;,$path) == 1) {

$bodyId = &#039;work&#039;;

} else if(eregi(&#039;^/play/set-a-body-id/play/&#039;,$path) == 1) {

$bodyId = &#039;play&#039;;

} else if ($path == &#039;/play/set-a-body-id/&#039;) {

$bodyId = &#039;home&#039;;

} else {

$bodyId = &#039;general&#039;;

}

}
return $bodyId;

}

$bodyId = exampleSetBodyId();

?&gt;
</pre>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/use-a-body-id-to-style-your-website-in-css-2-1337.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s better? Ruby on Rails vs. PHP</title>
		<link>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm</link>
		<comments>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm#comments</comments>
		<pubDate>Thu, 15 May 2008 18:58:55 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.knowtebook.com/?p=979</guid>
		<description><![CDATA[A friend of mine has a project where he wants to make a social community and was unsure which way to go. He asked me to ask you guys of help. It is the question which is discussed everywhere - (...)]]></description>
			<content:encoded><![CDATA[<p>A friend of mine has a project where he wants to make a social community and was unsure which way to go. He asked me to ask you guys of help. It is the question which is discussed everywhere - Ruby on Rails vs. PHP - but most of them are not very neutral. Many of them are <a target="_blank" href="http://www.railsenvy.com/2007/8/24/rails-vs-php" target="_blank">too pro for Ruby on Rails</a> or too pro for PHP.</p>
<p><a href="http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php.jpg"><img class="alignnone size-full wp-image-980" title="ruby-vs-php" src="http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php.jpg" alt="ruby-vs-php Whats better? Ruby on Rails vs. PHP" width="479" height="475" /></a></p>
<p>Ruby on Rails is a relatively new and young programming language. By doing a research for advantages and disadvantages. PHP is easy to learn and many people have experience with it. In our mind are some more important questions.</p>
<h2>What&#8217;s about:</h2>
<ol>
<li>Performance?</li>
<li>Security?</li>
<li>Scalability?</li>
</ol>
<p>This is an invitation for all of you to make your point of view clear, so that this question will be asked the last time!</p>
<h3>It&#8217;s your turn: What&#8217;s the best- Ruby on Rails or PHP?</h3>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/whats-better-ruby-on-rails-vs-php-979.htm/feed</wfw:commentRss>
	<enclosure url='http://www.knowtebook.com/uploaded/2008/05/ruby-vs-php-150x150.jpg' length ='1'  type='image/jpeg' />	</item>
		<item>
		<title>Automatically boost up the download time of your web pages</title>
		<link>http://www.knowtebook.com/automatically-boost-up-the-download-time-of-your-web-pages-894.htm</link>
		<comments>http://www.knowtebook.com/automatically-boost-up-the-download-time-of-your-web-pages-894.htm#comments</comments>
		<pubDate>Thu, 10 Apr 2008 07:33:49 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.knowtebook.com/?p=894</guid>
		<description><![CDATA[
PHP Speedy is a script that you can install on your web server to automatically speed up the download time of your web pages. Here’s an example, from a test page:
Before PHP Speedy - 14 requests that took 4.44 seconds

After (...)]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" title="PHP Speedy" href="http://aciddrop.com/php-speedy"><img src="http://aciddrop.com/wp-content/wp-uploads/aciddrop/images/php_speedy_logo_medium.gif" border="0" alt="PHP Speedy" title="php speedy logo medium Automatically boost up the download time of your web pages   coding" /></a></p>
<p>PHP Speedy is a script that you can install on your web server to <strong>automatically speed up the download time</strong> of your web pages. Here’s an example, from a test page:</p>
<h4>Before PHP Speedy - 14 requests that took 4.44 seconds</h4>
<p><img src="http://aciddrop.com/wp-content/wp-uploads/aciddrop/images/uncompressed-small.gif" border="0" alt="Before PHP Speedy" title="uncompressed small Automatically boost up the download time of your web pages   coding" /></p>
<h4>After PHP Speedy - 4 requests that took 1.1 seconds</h4>
<p><span id="more-894"></span></p>
<p><img src="http://aciddrop.com/wp-content/wp-uploads/aciddrop/images/compressed-small.gif" border="0" alt="Before PHP Speedy" title="compressed small Automatically boost up the download time of your web pages   coding" /></p>
<p>PHP Speedy automatically joined together all the appropriate files and compressed them, greatly reducing the load time of the page.</p>
<p>It is also available as a wordpress plugin.</p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/automatically-boost-up-the-download-time-of-your-web-pages-894.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>CMS the way it was meant to be with SilverStripe</title>
		<link>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm</link>
		<comments>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm#comments</comments>
		<pubDate>Fri, 14 Mar 2008 11:12:43 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.4webworking.com/cms-the-way-it-was-meant-to-be-with-silverstripe-880.htm</guid>
		<description><![CDATA[Powerful enough for any website or intranet design and simple enough for anyone to use. Its community still lacks in user and exstensions, but the intuitive design of the admin control panel convinces.



Simple. Intuitive and user-friendly
Flexible coding framework (MVC)
Scalable. From (...)]]></description>
			<content:encoded><![CDATA[<p><strong>Powerful</strong> enough for any <a target="_blank" title="Click here to view examples of Websites we've made" href="http://www.silverstripe.com/websites/">website</a> or <a target="_blank" title="Click here to view examples of Intranets we've made" href="http://www.silverstripe.com/intranets/">intranet</a> design and <strong>simple</strong> enough for anyone to use. Its community still lacks in user and exstensions, but the intuitive design of the admin control panel convinces.</p>
<p class="featureImage"><img src="http://www.silverstripe.com/assets/Uploads/_resampled/FeatureImage-ResizedImage650536-SilverStripe-2.2.0-Screenshot.PNG" alt="Feature image" width="378" height="191" title=" CMS the way it was meant to be with SilverStripe   coding" /></p>
<p class="featureList typography"><span id="more-858"></span></p>
<ul>
<li><strong>Simple.</strong> Intuitive and user-friendly</li>
<li><strong>Flexible</strong> coding framework (<a target="_blank" href="http://en.wikipedia.org/wiki/Model-view-controller">MVC</a>)</li>
<li><strong>Scalable.</strong> From 1 page to a million</li>
<li><strong>Standards Compliant.</strong> Fully XHTML compliant</li>
<li><strong>Modular.</strong> Easy to <a target="_blank" href="http://www.silverstripe.com/modules/">extend</a></li>
<li><strong>Template Freedom.</strong> No restrictions on the look and feel of your site</li>
<li><strong>Open source.</strong> It’s free <a target="_blank" href="http://www.silverstripe.com/licensing/">(BSD)</a> and you can <a target="_blank" href="http://www.silverstripe.com/how-to-contribute/">contribute to the project</a>.</li>
<li><strong>Cross platform</strong>. (Windows/Linux/Mac) and <strong>easy to install</strong> (PHP based)</li>
<li><strong>Supported. </strong><a target="_blank" href="http://www.silverstripe.com/what-we-do/">Professionally backed</a> by the developers</li>
<li><em><a target="_blank" href="http://www.silverstripe.com/overview/">Read overview online</a> or as a</em><em> PDF </em><em>for the <a target="_blank" href="http://www.silverstripe.com/assets/downloads/2008/sitebuilderbrochure.pdf" target="_blank">website builder</a> and <a target="_blank" href="http://www.silverstripe.com/assets/downloads/2008/user-brochure.pdf" target="_blank">the website owner</a></em></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/cms-the-way-it-was-meant-to-be-with-silverstripe-858.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>CMS: Open source php cms without database</title>
		<link>http://www.knowtebook.com/cms-open-source-php-cms-without-database-856.htm</link>
		<comments>http://www.knowtebook.com/cms-open-source-php-cms-without-database-856.htm#comments</comments>
		<pubDate>Fri, 14 Mar 2008 10:57:01 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[tools]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.4webworking.com/cms-open-source-php-cms-without-database-878.htm</guid>
		<description><![CDATA[CMS from Scratch is a quick, easy, and affordable solution that lets web designers give their customers a web site they can edit themselves.
It is now also an OPEN SOURCE project, so you can use the source PHP scripts for (...)]]></description>
			<content:encoded><![CDATA[<p>CMS from Scratch is a quick, easy, and affordable solution that lets web designers give their customers a web site they can edit themselves.</p>
<p>It is now also an OPEN SOURCE project, so you can use the source PHP scripts for FREE. See the project at Google Code.</p>
<p><img src="http://cmsfromscratch.com/cms/cmsimages/cms-screengrab.gif" alt="cms-screengrab CMS: Open source php cms without database" width="325" height="180" title="cms screengrab CMS: Open source php cms without database   tools" /></p>
<p><span id="more-856"></span></p>
<h2>Features</h2>
<p><strong>Simple to use</strong></p>
<ul>
<li>No database</li>
<li>No programming knowledge</li>
<li>Super-quick to install and set up</li>
<li>Quick &amp; simple AJAX-powered interface</li>
</ul>
<p><strong>Specifically designed for</strong></p>
<ul>
<li>web designers and developers</li>
<li>who understand some HTML</li>
<li>who need to create sites very rapidly</li>
<li>that can be easily &amp; quickly updated by clients with minimal training</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/cms-open-source-php-cms-without-database-856.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Webdevelopment: Pin the good items, unpin the bad ones.</title>
		<link>http://www.knowtebook.com/webdevelopment-pin-the-good-items-unpin-the-bad-ones-855.htm</link>
		<comments>http://www.knowtebook.com/webdevelopment-pin-the-good-items-unpin-the-bad-ones-855.htm#comments</comments>
		<pubDate>Fri, 14 Mar 2008 10:49:22 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[dhtml]]></category>

		<category><![CDATA[fonts]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.4webworking.com/webdevelopment-pin-the-good-items-unpin-the-bad-ones-877.htm</guid>
		<description><![CDATA[The Web Developer&#8217;s List is a big list of resources for web developers with info on Ajax, Web 2.0, Design, PHP, Ruby, ASP.Net, Images, CSS, SEO and more.

It&#8217;s a big improvement on the &#8217;standard&#8217; listings in that you can highlight (...)]]></description>
			<content:encoded><![CDATA[<p>The Web Developer&#8217;s List is a big list of resources for web developers with info on Ajax, Web 2.0, Design, PHP, Ruby, ASP.Net, Images, CSS, SEO and more.</p>
<p><img title="devlisting_logo.gif" src="http://www.knowtebook.com/uploaded/devlisting_logo.gif" border="0" alt="devlisting_logo Webdevelopment: Pin the good items, unpin the bad ones." width="190" height="36" align="left" /></p>
<p>It&#8217;s a big improvement on the &#8217;standard&#8217; listings in that you can highlight your personal favorites and that users can add sites on which everybody can vote meaning good sites are always on top.</p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/webdevelopment-pin-the-good-items-unpin-the-bad-ones-855.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP: Mehrere Zufallsbilder ohne Wiederholung anzeigen</title>
		<link>http://www.knowtebook.com/php-mehrere-zufallsbilder-ohne-wiederholung-anzeigen-903.htm</link>
		<comments>http://www.knowtebook.com/php-mehrere-zufallsbilder-ohne-wiederholung-anzeigen-903.htm#comments</comments>
		<pubDate>Mon, 10 Mar 2008 11:20:58 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.knowtebook.com/?p=903</guid>
		<description><![CDATA[Immer wieder stand ich vor der Aufgabe mehrere Bilder per Zufall, und ohne das ein angezeigtes bild doppelt angezeigt wird, darzustellen. Die meisten Skripte dieser Art konzentrieren sich auf die Darstellung von nur einem einzigen Zufallsbild. Dieses Skript liest Bilder (...)]]></description>
			<content:encoded><![CDATA[<p>Immer wieder stand ich vor der Aufgabe mehrere Bilder per Zufall, und ohne das ein angezeigtes bild doppelt angezeigt wird, darzustellen. Die meisten Skripte dieser Art konzentrieren sich auf die Darstellung von nur einem einzigen Zufallsbild. Dieses Skript liest Bilder aus einem Ordner aus, zeigt eine bestimmte Anzahl davon per Zufall an und es wird kein Bild doppelt angezeigt.</p>
<p><span id="more-903"></span></p>
<p>Die Aufgabe besteht darin die Bilder aus einem Ordner auszulesen und ohne eine Wiederholung anzuzeigen.</p>
<p>Folgendes PHP-Skript erf&#252;llt alle W&#252;nsche.</p>
<h2><strong>Funktionen:</strong></h2>
<p>- Mehrere Bilder werden aus einem Verzeichnis gelesen&#8230;<br />
- Und per Zufall angezeigt,<br />
- Bilder werden nicht wiederholt angezeigt,<br />
- Anzahl der Bilder kann ge&#228;ndert werden</p>
<h2><strong>CODE - Mehrere Zufallsbilder ohne Wiederholung anzeigen:</strong></h2>
<pre lang="php">// W&#228;hlen Sie das Verzeichnis
$verz = opendir ('pfad/zum/bildverzeichnis');

// Hier werden die Bilder in einen Array eingelesen
$bildarray = array();

// Bilder werden nicht wiederholt
while ($file = readdir ($verz)) {
if (!is_dir($file)) {
array_push($bildarray, $file);
}
}
closedir($verz);

// Die Zahl 3 gibt an, wieviele Bilder aus dem Bildordner angezeigt werden sollen.
$rand_var = array_rand($bildarray, 3);
for($x = 0; $x &lt; count($rand_var); $x++)
{
echo "&lt; img xsrc=\"pfad/zum/bildverzeichnis/" . $bildarray[$rand_var[$x]] . "\"&gt;";
}</pre>
<p>Viel Spass damit!</p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/php-mehrere-zufallsbilder-ohne-wiederholung-anzeigen-903.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>CMS: Plone - extremely flexible</title>
		<link>http://www.knowtebook.com/cms-plone-extremely-flexible-824.htm</link>
		<comments>http://www.knowtebook.com/cms-plone-extremely-flexible-824.htm#comments</comments>
		<pubDate>Thu, 14 Feb 2008 11:13:05 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.4webworking.com/cms-plone-extremely-flexible-881.htm</guid>
		<description><![CDATA[
Plone is a ready-to-run content management system that is built on the powerful and free Zope application server. Plone is easy to set up, extremely flexible, and provides you with a system for managing web content that is ideal for (...)]]></description>
			<content:encoded><![CDATA[<p><img title="Plone_logo.gif" src="http://www.knowtebook.com/uploaded/Plone_logo.gif" border="0" alt="Plone_logo CMS: Plone - extremely flexible" width="260" height="82" align="left" /></p>
<p>Plone is a ready-to-run content management system that is built on the powerful and free Zope application server. Plone is easy to set up, extremely flexible, and provides you with a system for managing web content that is ideal for project groups, communities, web sites, extranets and intranets.</p>
<p><span id="more-824"></span></p>
<p>* Plone is easy to install. You can install Plone with a a click and run installer, and have a content management system running on your computer in just a few minutes.<br />
* Plone is easy to use. The Plone Team includes usability experts who have made Plone easy and attractive for content managers to add, update, and mantain content.<br />
* Plone is international. The Plone interface has more than 35 translations, and tools exist for managing multilingual content.<br />
* Plone is standard. Plone carefully follows standards for usability and accessibility. Plone pages are compliant with US Section 508, and the W3C&#8217;s AAA rating for accessibility.<br />
* Plone is Open Source. Plone is licensed under the GNU General Public License, the same license used by Linux. This gives you the right to use Plone without a license fee, and to improve upon the product.<br />
* Plone is supported. There are close to a hundred developers in the Plone Development Team around the world, and a multitude of companies that specialize in Plone development and support.<br />
* Plone is extensible. There is a multitude of add-on products for Plone to add new features and content types. In addition, Plone can be scripted using web standard solutions and Open Source languages.<br />
* Plone is technology neutral. Plone can interoperate with most relational database systems, open source and commercial, and runs on a vast array of platforms, including Linux, Windows, Mac OS X, Solaris and BSD.</p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/cms-plone-extremely-flexible-824.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP f&#252;r dich - PHP und mySQL einfach und kurz erkl&#228;rt</title>
		<link>http://www.knowtebook.com/php-fuer-dich-php-und-mysql-einfach-und-kurz-erklaert-465.htm</link>
		<comments>http://www.knowtebook.com/php-fuer-dich-php-und-mysql-einfach-und-kurz-erklaert-465.htm#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:23:21 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.4webworking.de/allgemein/php-fuer-dich-php-und-mysql-einfach-und-kurz-erklaert/</guid>
		<description><![CDATA[Eine Frau namens Claudia stellte vor einigen Jahren ein Projekt auf die Beine, welches das Internet um einiges bereicherte. In 5monatiger Arbeit erstellte Sie f&#252;r PHP Anf&#228;nger eine unglaubliche Resource, einfach verst&#228;ndlich erkl&#228;rt.]]></description>
			<content:encoded><![CDATA[<p>Eine Frau namens Claudia stellte vor einigen Jahren ein Projekt auf die Beine, welches das Internet um einiges bereicherte. In 5monatiger Arbeit erstellte Sie f&#252;r PHP Anf&#228;nger eine unglaubliche Resource, einfach verst&#228;ndlich erkl&#228;rt.</p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/php-fuer-dich-php-und-mysql-einfach-und-kurz-erklaert-465.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP: Fehler abfangen und per Email weiterleiten</title>
		<link>http://www.knowtebook.com/php-fehler-abfangen-und-per-email-weiterleiten-574.htm</link>
		<comments>http://www.knowtebook.com/php-fehler-abfangen-und-per-email-weiterleiten-574.htm#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:23:21 +0000</pubDate>
		<dc:creator>Knowtebook</dc:creator>
		
		<category><![CDATA[coding]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.4webworking.de/allgemein/php-fehler-abfangen-und-per-email-weiterleiten/</guid>
		<description><![CDATA[PHP-Fehlermeldungen sind f&#252;r den Entwickler von au&#223;ergew&#246;hnlich gro&#223;em Nutzen: Sie verraten, sofern nicht bewusst ausgeschaltet, in welcher Datei ein bestimmter Fehler aufgetreten ist. Auch die betroffene Zeile des Quellcodes erscheint in der Meldung.

 photo credit: everdred]]></description>
			<content:encoded><![CDATA[<p>PHP-Fehlermeldungen sind f&#252;r den Entwickler von au&#223;ergew&#246;hnlich gro&#223;em Nutzen: Sie verraten, sofern nicht bewusst ausgeschaltet, in welcher Datei ein bestimmter Fehler aufgetreten ist. Auch die betroffene Zeile des Quellcodes erscheint in der Meldung.</p>
<p><a target="_blank" title="404" href="http://www.meinwebworker.de/knowhow/profiwissen/fehler-in-php-abfangen-und-per-email-weiterleiten/" target="_blank"><img src="http://farm1.static.flickr.com/32/58794161_696102721d.jpg" border="0" alt="404" title="58794161 696102721d PHP: Fehler abfangen und per Email weiterleiten   coding" /></a><br />
<small><a target="_blank" title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://www.knowtebook.com/wp-content/plugins/photo_dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" title="cc PHP: Fehler abfangen und per Email weiterleiten   coding" /></a> <a target="_blank" href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a target="_blank" title="everdred" href="http://www.flickr.com/photos/44124477206@N01/58794161/" target="_blank">everdred</a></small></p>]]></content:encoded>
			<wfw:commentRss>http://www.knowtebook.com/php-fehler-abfangen-und-per-email-weiterleiten-574.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
