Ahoi Marco,
$query = mysql_query("SELECT total_votes, total_value, used_ips FROM $tableName WHERE id='$id_sent' ")or die(" Error: ".mysql_error());
das ist doch richtig oder?
Das könnte es sein, teste mal diese veränderung:
$sql = "SELECT total_votes, total_value, used_ips FROM $tableName WHERE id='$id_sent' ";
$query = mysql_query($sql)or die(" Error: ".mysql_error()."<br />".$sql);
Informiere dich über SQL injections.
MfG