<?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>Davide Caffaratti blog &#187; invoice</title>
	<atom:link href="http://davidecaffaratti.com/tag/invoice/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidecaffaratti.com</link>
	<description>My own personal blog and my works</description>
	<lastBuildDate>Fri, 12 Mar 2010 02:40:56 +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>PHP pdf invoice</title>
		<link>http://davidecaffaratti.com/2009/06/30/php-pdf-invoice/</link>
		<comments>http://davidecaffaratti.com/2009/06/30/php-pdf-invoice/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 01:58:51 +0000</pubDate>
		<dc:creator>Davide</dc:creator>
				<category><![CDATA[Library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[invoice]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://davidecaffaratti.com/?p=335</guid>
		<description><![CDATA[I need for my cms a class that can print invoice payment in pdf format. Wel I find a nice script for oscommerce ( http://www.oscommerce.com/community/contributions,5321/category,12/search,pdf_customer_invoice ) that have a nice view of  the pdf invoice; Than I port this script and make a class for use in all indipendent cms &#8230; Here can download the [...]]]></description>
			<content:encoded><![CDATA[<p>I need for my cms a class that can print invoice payment in pdf format.</p>
<p>Wel I find a nice script for oscommerce (<a href="http://www.oscommerce.com/community/contributions,5321/category,12/search,pdf_customer_invoice" target="_blank"> http://www.oscommerce.com/community/contributions,5321/category,12/search,pdf_customer_invoice</a> ) that have a nice view of  the pdf invoice; Than I port this script and make a class for use in all indipendent cms &#8230;<img title="More..." src="http://davidecaffaratti.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p>Here can download the example output of the invoice class:</p>
<p><a href="http://davidecaffaratti.com/wp-content/uploads/2009/06/example.pdf">In</a><a href="http://davidecaffaratti.com/wp-content/uploads/2009/06/example.pdf">invoice pdf</a></p>
<a href="http://davidecaffaratti.com/upload/invoice.zip" title="download Cat_Pdf_Invoice - Class for make invoice pdf"><img src="http://davidecaffaratti.com/wp-content/plugins/download-monitor/img/download.gif" alt="download" style="float:left;width:300px;" /></a><div style="float:left;width:auto;line-height:25px;margin-top:30px;margin-left:15px;"><b>Size:</b> 81.96 KB<br /><b>Hits :</b> 123</div><br style="clear:both;" />
<p><span id="more-335"></span>Here is an example of use:</p>
<pre class="brush: php;">&lt;?php
$dir = dirname(__FILE__).'/';
define('FPDF_FONTPATH', $dir.'font/');
include($dir.'fpdf.php');
include($dir.'cat-pdf-invoice.inc.php');

$pdf = new Pdf_Invoice(array('locale'=&gt;false,'lang'=&gt;'en','show_watermark'=&gt;true,'watermark_text'=&gt;'Invoice copy'));
$params = array(
'customer_id'=&gt;1,
'payment_method'=&gt;'Paypal',
'carrier_method'=&gt;'Flat rate',
'carrier_price'=&gt;5.25,
'order_id'=&gt;222,
'order_date'=&gt;'2009/02/11',
'invoice_address'=&gt;&quot;street name\ncity zip\nstate\ncountry\n&quot;,
'delivery_address'=&gt;&quot;street name\ncity zip\nstate\ncountry\n&quot;,
'store_name'=&gt;'My store name',
'store_address'=&gt;&quot;store street name\nstore city zip\nstore state\nstore country\n&quot;,
'store_tel'=&gt;'+39 011222222',
'store_fax'=&gt;'+39 011333333',
'store_email'=&gt;'info@mystore.com',
'store_web'=&gt;'http://mystore.com',
'store_tax_number'=&gt;87039097397390,
'img_logo'=&gt;$dir.'invoice-logo.jpg',
'img_logo_correction'=&gt;0.18,
'invoice_footer'=&gt;'Thank you for your purchase'
);
$pdf-&gt;SetInvoiceParams($params);

$product = array(
'qty'=&gt;2,
'name'=&gt;'product 1 name',
'model'=&gt;'product 1 model',
'attributes'=&gt;'color: red, size: xl',
'price'=&gt;23.00,
'tax'=&gt;20.00
);
$pdf-&gt;SetProduct($product);
$product = array(
'qty'=&gt;10,
'name'=&gt;'product 2 name',
'model'=&gt;'product 2 model',
'attributes'=&gt;'color: blue, size: xxl',
'price'=&gt;13.00,
'tax'=&gt;18.00
);
$pdf-&gt;SetProduct($product);
$product = array(
'qty'=&gt;3,
'name'=&gt;'product 3 name',
'model'=&gt;'product 3 model',
'attributes'=&gt;'color: blue, size: xxl',
'price'=&gt;5.00,
'tax'=&gt;18.00
);
$pdf-&gt;SetProduct($product);
$product = array(
'qty'=&gt;10,
'name'=&gt;'product 4 name',
'model'=&gt;'product 4 model',
'attributes'=&gt;'color: blue, size: xxl',
'price'=&gt;90.00,
'tax'=&gt;18.00
);
$pdf-&gt;SetProduct($product);
$product = array(
'qty'=&gt;10,
'name'=&gt;'product 5 name',
'model'=&gt;'product 5 model',
'attributes'=&gt;'color: blue, size: xxl',
'price'=&gt;43.00,
'tax'=&gt;22.00
);
$pdf-&gt;SetProduct($product);

$pdf-&gt;GetInvoice($dir.'lang/');
?&gt;</pre>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" class="thickbox" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;t=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://delicious.com/post?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;notes=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=PHP%20pdf%20invoice%20-%20http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F" title="Twitter"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;annotation=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;bodytext=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://technorati.com/faves?add=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;t=PHP%20pdf%20invoice" title="MySpace"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;Title=PHP%20pdf%20invoice" title="BlinkList"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=PHP%20pdf%20invoice&amp;body=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F" title="email"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://davidecaffaratti.com/feed/?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://bitacoras.com/anotaciones/http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/bitacoras.png" title="Bitacoras.com" alt="Bitacoras.com" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  href="http://blogplay.com" title="Blogplay"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;description=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/connotea.png" title="connotea" alt="connotea" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://current.com/clipper.htm?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/current.png" title="Current" alt="Current" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.diggita.it/submit.php?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/diggita.png" title="Diggita" alt="Diggita" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.diigo.com/post?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/diigo.png" title="Diigo" alt="Diigo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;desc=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://internetmedia.hu/submit.php?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/im.png" title="Internetmedia" alt="Internetmedia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice&amp;source=Davide+Caffaratti+blog+My+own+personal+blog+and+my+works&amp;summary=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=PHP%20pdf%20invoice&amp;URL=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=I%20need%20for%20my%20cms%20a%20class%20that%20can%20print%20invoice%20payment%20in%20pdf%20format.%0D%0A%0D%0AWel%20I%20find%20a%20nice%20script%20for%20oscommerce%20%28%20http%3A%2F%2Fwww.oscommerce.com%2Fcommunity%2Fcontributions%2C5321%2Fcategory%2C12%2Fsearch%2Cpdf_customer_invoice%20%29%20that%20have%20a%20nice%20view%20of%C2%A0%20the%20pdf%20i?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://reddit.com/submit?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/scoopeo.png" title="Scoopeo" alt="Scoopeo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://segnalo.alice.it/post.html.php?url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/segnalo.png" title="Segnalo" alt="Segnalo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://slashdot.org/bookmark.pl?title=PHP%20pdf%20invoice&amp;url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" class="thickbox" href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F&amp;story_title=PHP%20pdf%20invoice?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" class="thickbox" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdavidecaffaratti.com%2F2009%2F06%2F30%2Fphp-pdf-invoice%2F?TB_iframe=true&amp;height=500&amp;width=900"><img src="http://davidecaffaratti.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://davidecaffaratti.com/2009/06/30/php-pdf-invoice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
