![]() |
|
|
||||
|
||||
This is an advance script, but I will guide you through it. I hope you might pick up somethings about the script.
To get this script working, you must have GD installed and Enable, you have to edit your php.ini. Lets start. Start up your PHP editor and create a new document. Default: [php] <? ?> [/php] Lets plan ahead, what we want for the sig is a background color, 1px border and a text, and maybe some special effects. Plans
[php] <? // Headers - to manage the script (NO CACHE) // It will always update. header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); ?> [/php] The header() function is used to control the page invisibly, it can redirect, control page content and more. [php] <? // Headers - to manage the script (NO CACHE) // It will always update. header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header ("Content-type: image/png"); // Defines the image will be PNG // Create the image $im = @ImageCreate (400, 150); // Create 400x150 blank image $background_color = ImageColorAllocate ($im, 255, 0, 0); // Define background color :Red $text_color = ImageColorAllocate($im, 0, 0, 0); // Define font color: Black $grey = ImageColorAllocate($im, 144, 144, 144); // Grey $margin = 10; // Define margin for text // Borders (Black borders) imageline($im, 0, 0, 0, 149, $text_color); // Left Line imageline($im, 0, 0, 399, 0, $text_color); // Top Line imageline($im, 399, 1, 399, 149, $text_color); // Right Line imageline($im, 0, 149, 399, 149, $text_color); // Bottom Line // Insert the Text imagestring($im, 3, 20, $margin+15, "My first advance script", $text_color); // Send image data to browser. ImagePng($im); ?> [/php] Out come: ![]() There you have it, your first advance script. Now we can add some special features.
__________________
Xbox 360 - 2 Games - 2 Controllers - 120GB Elite - Dead PS3 - 23 BD Games - 13 PSN Games - 9 Controllers - 320GB - Alive Wii - 6 Games - 4 Wiimotes - Alive PC - Overkill - God like :] EVO - Needs new clutch & brakes :[ ![]() Gaming Generations | XnogarD Production - Soon!!! |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|