<?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>Weblenium &#187; PHP</title>
	<atom:link href="http://www.weblenium.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weblenium.com</link>
	<description></description>
	<lastBuildDate>Mon, 29 Nov 2010 12:31:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>phpMyBackupPro &#8211; Automated MySQL Backups</title>
		<link>http://www.weblenium.com/2009/07/phpmybackuppro-automated-mysql-backups/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.weblenium.com/2009/07/phpmybackuppro-automated-mysql-backups/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:13:01 +0000</pubDate>
		<dc:creator>phorner</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[mySQL]]></category>

		<guid isPermaLink="false">http://www.weblenium.com/?p=557</guid>
		<description><![CDATA[phpMyBackup Pro is an easy to use, free, web-based MySQL backup application. It can backup one or several databases, using compression like gzip, zip (or no compression) and can schedule backups. It can also backup directly to an FTP server or send the backups via email.
All of these features are presented in a management interface. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phpmybackuppro.net/" target="_blank"><img class="alignleft size-full wp-image-558" title="phpMyBackup pro" src="http://www.weblenium.com/wp-content/uploads/2009/07/logo.png" alt="phpMyBackup pro" width="166" height="45" />phpMyBackup Pro</a> is an easy to use, free, web-based MySQL backup application. It can backup one or several databases, using compression like gzip, zip (or no compression) and can schedule backups. It can also backup directly to an FTP server or send the backups via email.</p>
<p>All of these features are presented in a management interface. A shell mode is also available for manual use or by cron script.</p>
<p>There are several language packages already available.</p>
<p>For more information: <a href="http://www.phpmybackuppro.net/" target="_blank">phpMyBackup Pro</a></p>
<img src="http://www.weblenium.com/?ak_action=api_record_view&id=557&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.weblenium.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.weblenium.com/2009/07/phpmybackuppro-automated-mysql-backups/feed/</wfw:commentRss>
		<slash:comments>2869</slash:comments>
		</item>
		<item>
		<title>50+ PHP optimisation tips</title>
		<link>http://www.weblenium.com/2009/07/50-php-optimisation-tips/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.weblenium.com/2009/07/50-php-optimisation-tips/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:40:18 +0000</pubDate>
		<dc:creator>phorner</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.weblenium.com/?p=516</guid>
		<description><![CDATA[For those of you who program in PHP, this list of PHP optimisation tips is invaluable. It&#8217;s an accumulation of accurate tips and provides references and citations for each and every one.
Some examples:

Use sprintf instead of variables contained in double quotes, it’s about 10x faster.
Use pre-calculations, set the maximum value for your for-loops before and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-518" title="PHP" src="http://www.weblenium.com/wp-content/uploads/2009/07/php.gif" alt="PHP" width="101" height="56" />For those of you who program in PHP, this list of <a href="http://www.hm2k.com/posts/50-php-optimisation-tips-revisited" target="_blank">PHP optimisation tips</a> is invaluable. It&#8217;s an accumulation of accurate tips and provides references and citations for each and every one.</p>
<p>Some examples:</p>
<ol>
<li>Use sprintf instead of variables contained in double quotes, it’s about 10x faster.</li>
<li>Use pre-calculations, set the maximum value for your for-loops before and not in the loop. ie: for ($x=0; $x &lt; count($array); $x), this calls the count() function each time, use $max=count($array) instead before the for-loop starts.</li>
<li>“else if” statements are faster than select statements aka case/switch.</li>
<li>++$i is faster than $ i++, so use pre-increment where possible.</li>
</ol>
<p>&#8230; and many, many others.</p>
<p>I&#8217;ll definitely be applying all of these optimisations to my code in the future.</p>
<p>For more information: <a href="http://www.hm2k.com/posts/50-php-optimisation-tips-revisited" target="_blank">50+ PHP optimisation tips revisited</a></p>
<img src="http://www.weblenium.com/?ak_action=api_record_view&id=516&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.weblenium.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.weblenium.com/2009/07/50-php-optimisation-tips/feed/</wfw:commentRss>
		<slash:comments>1163</slash:comments>
		</item>
		<item>
		<title>PHP functions in Javascript using PHP.JS</title>
		<link>http://www.weblenium.com/2009/05/php-functions-in-javascript-using-phpjs/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.weblenium.com/2009/05/php-functions-in-javascript-using-phpjs/#comments</comments>
		<pubDate>Thu, 28 May 2009 09:50:56 +0000</pubDate>
		<dc:creator>phorner</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://www.weblenium.com/?p=484</guid>
		<description><![CDATA[For those of you, like me, who use PHP and Javascript regularly, PHP.JS is a great enhancement. PHP.JS is an open source project where PHP functions are ported to Javascript. This means that the PHP functionality is executed client-side which reduces the load on the server.
Some of the functions that have already been ported are:

md5()
date()
base64_decode()

As [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-485" title="phpjs" src="http://www.weblenium.com/wp-content/uploads/2009/05/phpjs.png" alt="phpjs" width="170" height="90" />For those of you, like me, who use PHP and Javascript regularly, <a href="http://phpjs.org/" target="_blank">PHP.JS</a> is a great enhancement. PHP.JS is an open source project where PHP functions are ported to Javascript. This means that the PHP functionality is executed client-side which reduces the load on the server.</p>
<p>Some of the functions that have already been ported are:</p>
<ul>
<li>md5()</li>
<li>date()</li>
<li>base64_decode()</li>
</ul>
<p>As the library has become too big to include at once, and having users copy-paste      functions to their projects can end up causing maintenance hell, the developers have created a     <a href="http://phpjs.org/packages/configure">compiler tool</a> that     allows programmers to select ONLY the functions they need, and wrap them     up in a single <em>php.js</em> file.</p>
<p>Another benefit from this library is that it enhances the functionality of Javascript by adding functions that don&#8217;t exist natively in Javascript.</p>
<p>Definitely a great tool for developers.</p>
<p>For more information: <a href="http://phpjs.org/" target="_blank">PHP.JS</a></p>
<img src="http://www.weblenium.com/?ak_action=api_record_view&id=484&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.weblenium.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.weblenium.com/2009/05/php-functions-in-javascript-using-phpjs/feed/</wfw:commentRss>
		<slash:comments>1152</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin 3.1.5 released</title>
		<link>http://www.weblenium.com/2009/05/phpmyadmin-315-released/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.weblenium.com/2009/05/phpmyadmin-315-released/#comments</comments>
		<pubDate>Sun, 17 May 2009 12:46:29 +0000</pubDate>
		<dc:creator>phorner</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://www.weblenium.com/?p=473</guid>
		<description><![CDATA[phpMyAdmin 3.1.5 has been released. It is a bugfix-only version. Among the changes is a fix for PHP 5.3 compatibility.
For those of you who may not already know about phpMyAdmin, it is a free software tool written in PHP intended to handle the administration of MySQL.
Since version phpMyAdmin 3.x, support for PHP 4 has been [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-474" title="phpMyAdmin" src="http://www.weblenium.com/wp-content/uploads/2009/05/php_logo.jpg" alt="phpMyAdmin" width="130" height="76" /><a href="http://www.phpmyadmin.net/home_page/news.php#phpMyAdmin_3.1.5_is_released" target="_blank">phpMyAdmin 3.1.5</a> has been released. It is a bugfix-only version. Among the changes is a fix for PHP 5.3 compatibility.</p>
<p>For those of you who may not already know about phpMyAdmin, it is a free software tool written in <a href="http://php.net/" target="_blank">PHP</a> intended to handle the administration of <a href="http://mysql.com/" target="_blank">MySQL</a>.</p>
<p>Since version phpMyAdmin 3.x, support for PHP 4 has been dropped (as the official developers for PHP no longer support PHP 4 or earlier). If you still use PHP 4 on your server, then you can still use the <a href="http://www.phpmyadmin.net/home_page/downloads.php" target="_blank">phpMyAdmin 2.x</a> series.</p>
<p>For more information: <a href="http://www.phpmyadmin.net/home_page/news.php#phpMyAdmin_3.1.5_is_released" target="_blank">phpMyAdmin</a></p>
<img src="http://www.weblenium.com/?ak_action=api_record_view&id=473&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.weblenium.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.weblenium.com/2009/05/phpmyadmin-315-released/feed/</wfw:commentRss>
		<slash:comments>2564</slash:comments>
		</item>
		<item>
		<title>PHP Quick Profiler &#8211; the equivalent of Firebug for PHP</title>
		<link>http://www.weblenium.com/2009/04/php-quick-profiler-the-equivalent-to-firebug-for-php/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.weblenium.com/2009/04/php-quick-profiler-the-equivalent-to-firebug-for-php/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 13:15:07 +0000</pubDate>
		<dc:creator>phorner</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[pqp]]></category>

		<guid isPermaLink="false">http://www.weblenium.com/?p=217</guid>
		<description><![CDATA[When writing PHP code and database queries, speed of execution and working out where the bottle necks are can be extremely time consuming. Filling your code with echo statements can be daunting. However, Ryan Campbell from Infinity Box Inc. (the creators of Wufoo, a HTML Form Builder), has developed PHP Quick Profiler (PQP), &#8220;a small [...]]]></description>
			<content:encoded><![CDATA[<p>When writing PHP code and database queries, speed of execution and working out where the bottle necks are can be extremely time consuming. Filling your code with echo statements can be daunting. However, Ryan Campbell from Infinity Box Inc. (the creators of <a href="http://wufoo.com/" target="_blank">Wufoo, a HTML Form Builder</a>), has developed PHP Quick Profiler (PQP), &#8220;a small tool (think Firebug for PHP) to provide profiling and debugging related information to developers without needing them to add a lot of programmatic overhead to their code.&#8221;</p>
<p>All that&#8217;s required is that you upload the necessary files to your project folder and include the <code>PhpQuickProfiler.php</code> file in your code. This will then enable the <strong>console</strong>, <strong>memory</strong> and <strong>file</strong> logging. <strong>Speed</strong> and <strong>database </strong>tracking require a bit more work, but can be implemented as well.</p>
<p><img class="alignnone size-full wp-image-221" title="PHP Quick Profiler" src="http://www.weblenium.com/wp-content/uploads/2009/04/pqp_medium.jpg" alt="PHP Quick Profiler" width="600" height="369" /></p>
<p>The interface is encapsulated within PQP, removing the need to insert CSS or Javascript into your code. The PQP file does it all for you.</p>
<p>I&#8217;ll definitely be using this in future projects, and also using it to optimise some older projects. Highly recommended for PHP developers.</p>
<p>For more information: <a href="http://particletree.com/features/php-quick-profiler/" target="_blank">PHP Quick Profiler</a></p>
<p>Demo: <a href="http://particletree.com/examples/pqp/" target="_blank">PQP Demo</a></p>
<img src="http://www.weblenium.com/?ak_action=api_record_view&id=217&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.weblenium.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.weblenium.com/2009/04/php-quick-profiler-the-equivalent-to-firebug-for-php/feed/</wfw:commentRss>
		<slash:comments>1519</slash:comments>
		</item>
	</channel>
</rss>

