Forum PHP 2025

Voting

: max(four, nine)?
(Example: nine)

The Note You're Voting On

cesargus at yahoo dot com
20 years ago
//simple hello world

<?
header ("Content-type: image/png");

$img_handle = ImageCreate (200, 20) or die ("Cannot Create image");
$back_color = ImageColorAllocate ($img_handle, 0, 10, 10);
$txt_color = ImageColorAllocate ($img_handle, 235, 235, 51);
ImageString ($img_handle, 10, 25, 5, "Hello world!", $txt_color);
ImagePng ($img_handle);
?>

<< Back to user notes page

To Top