OK, I didn't explain all.
I conclude that this part is the problem becose I don't have any other explanation:
When I put this code on page and send cont_id, it give me nothing on page.
$contd = $HTTP_GET_VARS['cont_id'];
$contdel = "DELETE FROM contact WHERE cont_id='$contd'";
$result = mysql_query($contdel);
if (!$result) {
echo "Error";
} else {
echo "Contact deleted sucsesfuly";
}
MiTja