Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/pcstore/public_html/
Upload File :
Current File : /var/www/html/mmishra/indem/pcstore/public_html/test.php

<?
Header("Content-Type: image/png");
include "page_header.inc";
//echo phpinfo();
//echo send_mail(561, $con) . "xxx";
/*
$im = ImageCreate(100, 100);
$black = ImageColorAllocate($im, 0, 0, 0);
$white = ImageColorAllocate($im, 255, 255, 255);
ImageLine($im, 0, 0, 99, 99, $white);
Imagepng($im);
ImageDestroy($im);
*/
$string = $_GET['text'];
$im    = imagecreatefrompng("button1.png");
$orange = imagecolorallocate($im, 220, 210, 60);
$px    = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 9, $string, $orange);
imagepng($im);
imagedestroy($im);
include "page_footer.inc";
?>