is your host allowing the reading of the data now?
To test if your host retrievs the data change this code:
Code:
if( $data ){ // if we get the data ok
drawIt($data, $fc, $bc, $fz, $trans, $Xoffset, $Yoffset, $backIMG);
//echo "$data, $fc, $bc, $fz, $trans, $backIMG";
}
to:
Code:
if( $data ){ // if we get the data ok
//drawIt($data, $fc, $bc, $fz, $trans, $Xoffset, $Yoffset, $backIMG);
echo "$data, $fc, $bc, $fz, $trans, $backIMG";
}
if you see it return nothing, it means it has a problem grabbing the data.