Thanks
Search found 6 matches
- Wed Apr 20, 2005 2:42 pm
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
- Wed Apr 20, 2005 11:03 am
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
Thanks it's working now :):):) I configured php with jpeg support to try your example, but still couldn't get the .jpg / .gif / .png (I tried them all) to get parsed as PHP In the end I put what you told me (the AddType thing) inside the actual httpd.conf itself and restarted Apache. It's an ok work...
- Wed Apr 20, 2005 7:24 am
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
- Tue Apr 19, 2005 11:53 pm
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
- Tue Apr 19, 2005 10:55 pm
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
- Tue Apr 19, 2005 9:48 pm
- Forum: PHP - Code
- Topic: [SOLVED] Dynamic signature
- Replies: 10
- Views: 456
[SOLVED] Dynamic signature
The following code works perfectly fine: <?php header( "Content-type: image/gif" ); $im = ImageCreate( 483, 20 ); // width, height $red = ImageColorAllocate( $im, 255, 0, 0 ); $white = ImageColorAllocate( $im, 255, 255, 255 ); $upt = exec('uptime'); ImageString($im,3,3,3,$upt,$white); Imag...