whatimplayin.php errors

Ask questions, request features, or just complement us about our software and services.
Post Reply
GC
Posts: 36
Joined: Mon Aug 26, 2002 7:33 am
Location: Vancouver, BC
Contact:

whatimplayin.php errors

Post by GC »

http://www.uhoh-boom.com/gc/rtb/whatimplayin.php

working out of http://uhoh-boom.com/gc/rtb/

Code: Select all

<?php
include("includes.php");
header("Content-Type: image/png");
$im = imagecreatefrompng("songband1.png");

if ($im)
{
ImageString($im,  1,  17,  4,  "Playing: ".$current_song,  2);
ImageString($im,  1,  17,  17,  "There are ".$listeners,  2);

ImagePNG($im);
}
?> 
Did I do something wrong?
-GC
User avatar
Jay
Will work for food (Administrator)
Posts: 3020
Joined: Mon Jan 14, 2002 12:48 am
Location: Next Door
Contact:

Post by Jay »

you appearently don't have the module for Image creation installed in your PHP installation.
- Jay
GC
Posts: 36
Joined: Mon Aug 26, 2002 7:33 am
Location: Vancouver, BC
Contact:

Post by GC »

Jay wrote:you appearently don't have the module for Image creation installed in your PHP installation.
Oy, I'm pretty stupid. :D

Sorry for taking up so much of your time lately. :) And thanks for your help.
-GC
Post Reply