View Single Post
Old 11-02-2023, 04:39 AM  
mopek1
Confirmed User
 
Industry Role:
Join Date: Jun 2004
Location: Canada
Posts: 3,074
Quote:
Originally Posted by redwhiteandblue View Post
What's in code.php?
Below is the whole code in that code.php file:


<?php
include("functions.inc.php");

$code = makeStr($_GET['code']);

header("Content-type: image/png");
$im = @imagecreate(75, 30)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 7, 10, 7, $code, $text_color);
imagepng($im);
imagedestroy($im);
?>
mopek1 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote