|
$query = "SELECT amt_sold,ads_sold FROM {$Globals['pp_db_prefix']}stats";
$totalv = ppmysql_query($query,$link);
list( $amtsold, $soldads ) = mysql_fetch_row($totalv);
ppmysql_free_result($totalv);
I would think somewhere when your ads where deleted by you that the price was changed or something along the way after it was sold resulting in an amount being deducted higher than what was initially set when the ad was sold
|