Archive for September, 2008

Perl Progress Bar Code

Tuesday, September 30th, 2008

Progress Bar Code

PHP Output array to page

Wednesday, September 24th, 2008

Simple technique to output a php array (in an easy to read style) to a page:

#foreach ($_GET as $key => $value) {
# echo “key=”.$key.” —— value=”.$value;
#}

foreach ($_POST as $key => $value) { echo ‘key=’.$key.’ - value=’.$value.’
‘; }

Creating PDFs

Thursday, September 4th, 2008

Sitepoint article

http://www.sitepoint.com/article/generate-pdfs-php/

PDF Lib

http://www.pdflib.com/download/