Archive for September, 2008
PHP Output array to page
Wednesday, September 24th, 2008Simple 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, 2008Sitepoint article
http://www.sitepoint.com/article/generate-pdfs-php/
PDF Lib
http://www.pdflib.com/download/