PHP: Dancing with the cURL

HTTP Authentication with cURL in the event I’m overdrawn at the memory bank. $ch = curl_init(); $url = “http://myurl.com/plah.php?foo=value”; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt…

PHP: Locator script

When asked to write a store location program in less than an hour, I developed this little utility. It uses my own MySQL…

PHP: TrueType bounding box with GD

Just a snippet to print out the values in a bounding box. print_r’s simple outline format just makes it easier to visualize. <?php…

PHP: transparent PNG over JPEG

<?php header(“Content-type: image/jpeg”); $im = imagecreatetruecolor(800,600); // main image output $im2 = imagecreatefromjpeg(‘image1.jpg’); $im3 = imagecreatefrompng(‘../images/template3.png’); imagecopymerge($im,$im2,360,186,0,0,800,600,100); imagecopy($im,$im3,0,0,0,0,800,600); imagejpeg($im); imagedestroy($im); imagedestroy($im2); imagedestroy($im3); ?>