--- bryan_is_south <[EMAIL PROTECTED]> wrote:

> Perhaps I could make it something like:
> $Score[$Artist - $Album]=$avg;
> 
> -bryan

You will need to do something like this or PHP will try to subtract 0-0:

$Score["$Artist - $Album"] = $avg;

James

Reply via email to