<?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>Zemoon Blog by Vlatko Zdrale &#187; PHP</title>
	<atom:link href="http://blog.zemoon.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.zemoon.com</link>
	<description>Web developing Tips&#038;Tricks by Vlatko Zdrale</description>
	<lastBuildDate>Wed, 31 Mar 2010 22:54:17 +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>Preview PDF in PHP</title>
		<link>http://blog.zemoon.com/preview-pdf-in-php/</link>
		<comments>http://blog.zemoon.com/preview-pdf-in-php/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 23:54:34 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/?p=95</guid>
		<description><![CDATA[If you want to create preview image of some pdf you have on your site, all you need is web server that has installed Imagick. If you are lucky enough to have that you can use this code:

&#60;?
$preview = new imagick('somepdf.pdf[0]');	/* read first page of PDF */
setImageFormat('jpeg');			/* set preview format to jpeg */
header('Content-Type: image/jpeg');		/* display [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/preview-pdf-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Fatal error: Allowed memory size of xxx bytes exhausted</title>
		<link>http://blog.zemoon.com/php-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/</link>
		<comments>http://blog.zemoon.com/php-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 20:23:20 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/php-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/</guid>
		<description><![CDATA[Familiar with this error code? I was working on some PHP code that is doing bunch of data analysis and I got that error. There is one line of code that can help you to fix this problem. Just put this line at the top of the script:

ini_set('memory_limit', '16M');

This will set memory limit to 16MB. [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/php-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export MySQL To Excel better way</title>
		<link>http://blog.zemoon.com/export-mysql-to-excel-better-way/</link>
		<comments>http://blog.zemoon.com/export-mysql-to-excel-better-way/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 20:14:55 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Vlatko Zdrale]]></category>
		<category><![CDATA[Webdeveloper]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/export-mysql-to-excel-better-way/</guid>
		<description><![CDATA[I showed you how to export your MySQL tables to MS Excel file, but that wasn&#8217;t real excel files we were creating. Actually you were getting CSV and HTML files which excel can read. These were textual files, and now I am gonna show you how to create binary excel file: [SOURCE CODE]
 

]]></description>
		<wfw:commentRss>http://blog.zemoon.com/export-mysql-to-excel-better-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple PHP breadcrumb navigation</title>
		<link>http://blog.zemoon.com/simple-php-breadcrumb-navigation/</link>
		<comments>http://blog.zemoon.com/simple-php-breadcrumb-navigation/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 18:23:32 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[breadcrumb]]></category>
		<category><![CDATA[breadcrumb navigation]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[Vlatko Zdrale]]></category>
		<category><![CDATA[Webdeveloper]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/simple-php-breadcrumb-navigation/</guid>
		<description><![CDATA[I was working on one application this morning and I needed breadcrumb links on the top. First thought that came to me was: &#8216;recursion&#8217;. That&#8217;s scary word, for memory eating functions, but at the same time that is easiest way to create breadcrumbs navigation. All you have to do is to create MySQL table, with [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/simple-php-breadcrumb-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>show PHP errors</title>
		<link>http://blog.zemoon.com/show-php-errors/</link>
		<comments>http://blog.zemoon.com/show-php-errors/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 16:55:47 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/show-php-errors/</guid>
		<description><![CDATA[Did you ever work on some php script, and all you get when you point your browser to that script was blank page? Just emptiness. You would expect error message at least. Probably your server is configured not to display and log errors.
Try to add these two lines to your .htaccess file:

php_flag display_errors on
php_value error_reporting [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/show-php-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP code inside HTML page</title>
		<link>http://blog.zemoon.com/php-code-inside-html/</link>
		<comments>http://blog.zemoon.com/php-code-inside-html/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 04:20:37 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/php-code-inside-html/</guid>
		<description><![CDATA[Did you ever try to put some PHP code inside your HTML page? It might work, it might not. It depends on your webserver settings. Usually you dont have access to this settings, but you can use .htaccess file to fix this problem. All you have to do is just to put this line into your [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/php-code-inside-html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Export MySQL to Excel with style using PHP &amp; HTML tables</title>
		<link>http://blog.zemoon.com/export-mysql-to-excel-with-style-using-php-html-tables/</link>
		<comments>http://blog.zemoon.com/export-mysql-to-excel-with-style-using-php-html-tables/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 16:09:55 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/export-mysql-to-excel-with-style-using-php-html-tables/</guid>
		<description><![CDATA[In last post I showed you how to export from mysql to excel using php but result is plain, there is no style at all. Here I will show you how to add some style to your data. Here is simple PHP script you can use to export your data form MySQL table to HTML [...]]]></description>
		<wfw:commentRss>http://blog.zemoon.com/export-mysql-to-excel-with-style-using-php-html-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export from MySQL to Excel using PHP</title>
		<link>http://blog.zemoon.com/export-from-mysql-to-excel-using-php/</link>
		<comments>http://blog.zemoon.com/export-from-mysql-to-excel-using-php/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 02:04:35 +0000</pubDate>
		<dc:creator>Vlatko Zdrale</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.zemoon.com/export-from-mysql-to-excel-using-php/</guid>
		<description><![CDATA[Did you ever wanted to export data from your MySQL database to some format nongeek people can work with? Here is simple PHP script you can use to export your data form MySQL table to Excel file. (Actually not real Excel XLS file but CSV file which Excel can read)
Download



]]></description>
		<wfw:commentRss>http://blog.zemoon.com/export-from-mysql-to-excel-using-php/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.252 seconds -->
