So yeah... Discuss PHP here!
Offline
Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!
Offline
WindowsExplorer wrote:
Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!
Yep!
Offline
WindowsExplorer wrote:
Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!
Here's some better coding for your IP signature!
<?php
header("Content-type: image/png");
$string = " Your IP is " . $_SERVER['REMOTE_ADDR'];
$im = imagecreatefrompng("http://plaxon.comyr.com/images/button.PNG");
$color = imagecolorallocate($im, 0, 0, 0);
$px = (imagesx($im) - 7.5 * strlen($string)) / 4;
$py = 9;
$fontSize = 6;
imagestring($im, fontSize, $px, $py, $string, $color);
imagepng($im);
imagedestroy($im);
?>Offline
Hmm... If I wanted to create my own 'centre' tag for the forums, would it be possible? If it is, please tell me how!
Offline
Last edited by wulfmaster (2011-09-17 07:46:55)
Offline