Advertisement
5_2007-2008 Registry #178267

Microsoft Product Key Viewer

Decode and View the Product Key used to install: Windows 2000, XP, Server 2003, Office XP, 2003.

AI

KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Quellcode
original-source
Upload
<?PHP
header("Content-type: image/png");
//Retrieve users IP.
$ip = $_SERVER['REMOTE_ADDR'];
//Image handler
$im = imagecreate (250, 28); 
//Background Color (RGB)
$back = ImageColorAllocate ($im, 255, 255, 255); 
//Text Color (RGB)
$text_color = ImageColorAllocate ($im, 0, 200, 0);
//Text to generate
$show_txt = "Your IP is: $ip";
//8 = font size. verdana = font name.
ImageTTFText ($im, 8, 0, 10, 20, $text_color, "verdana", $show_txt); 
//Create Image
ImagePNG($im); 
?>
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine