These pages are about all the things I'm working on, learning about or stuff I want to tell you about. Like always, too much to do and too little time to do it. Parts of this site might be in Dutch, but I'll try to keep most of it in English. I'm passionate about: my family, Linux, Ubuntu, JavaScript, PHP, Zend Framework, Drupal, USA, Spain, Apple and sailing.
As an experienced Webdeveloper and Zend Certified Engineer the good people of Coppen Communications and Marketing are giving me the room to grow in my field. Tons of new challanges are thrown at me, and I love it.
This years PHP Benelux Conference wat very informative and of course lots of fun. The PHP in the Dark, the Docterine2 presentation and the VIM+*nix=IDE talk were brilliant. And yes, I will most likely be attending next year.
I have pulled down the flamepdf code and am not developing it further at the moment. Please let me know if you still require this code Zend Framework had a nice PDF module that I would probably use the next time I need a webapp with pdf.
I often bump into people who claim their mail isn't working in php scripts. The first thing I do is chuck this script in and see what happens...
<?php
$to = "info@domain.com";
$from = "info@domain.com";
$result = mail($to, "Mail test", 'Mail test', "From: $from" );
echo "The result is : $result (1=good, 0=bad)";
?>