Categories
- agile (3)
- algorithms (34)
- cheatsheets (2)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (139)
- micro tutorial (203)
- PHP (111)
- portfolio (5)
- quiz (7)
- snippets (7)
- video (1)
- web development (168)
- zend framework (81)
Monthly Archives: September 2010
HTTP POST with PHP without cURL
Awesome PHP It’s strange how powerful PHP can be. There’s a legend that cURL is the only way to perform a HTTP POST with PHP, but that isn’t the truth. An extremely useful script is by using stream_context_create: $optional_headers = … Continue reading
The Better Way to Unset Variables in PHP
Don’t know why, but most of times I see the PHP unset() multilined with a only one parameter!? unset($var1); unset($var2); unset($var3); But as you can see from the PHP doc page of unset() this method takes optional parameter count. void … Continue reading





