Hello again, Yesterday I attended the phpGG Frontend Special , phpGG first great conference and I must say it was very good organized. I had to be on the road for more than four hours but it was worth every second of it. Like on most conferences you were welcomed with your preferable drink, for …
Merry Christmas and a very joyful and promising 2009
My dearest reader, I wish you a prosperous 2009. May it bring for you promises of new dreams to fulfill, new goals to reach and new joys to discover! See you in the next year. Warm winter greetings from Belgium, Nick Belhomme Your PHP5 Zend Certified Engineer
Using FaceBook as a marketing tool
Dear readers, After playing a while on facebook I have started my very own fanpage. Yeps you can now besides, Flickr, Twitter, this blog and many more follow my adventures also on facebook. 🙂 Some fans already started the Nick Belhomme Facts. You ought to check it out, it is a great laugh. I will …
Commented-out Code is rotting code
One of the things I really hate, and programmers should really avoid is commenting-out code. Do NOT do this! <?php $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); //curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE); curl_setopt($ch, CURLOPT_HEADER, 0); //curl_setopt($ch, CURLOPT_COOKIEFILE, "cookiefile"); //curl_setopt($ch, CURLOPT_COOKIEJAR, "cookiefile"); //curl_setopt($ch, CURLOPT_COOKIE, session_name() . '=' . session_id()); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_URL, 'http://www.testingsite.com'); $result1 …