Can any1 tell me whats wrong here:

PHP Code: 
    $thumbsUp $_POST['good'];
    
$thumbsDown $_POST['bad'];
    
    
$id = isset($_GET['id']) ? mysql_real_escape_string(trim($_GET['id'])): '';
    
    if (
$thumbsUp) {
        
mysql_query("UPDATE wcddl_downloads SET thumbsup=thumbsup+1 WHERE id='$id'");
    } 
Basically when i press the thumbsu button i want to increment the field +1 for tht ddl.
Chris2k Reviewed by Chris2k on . Thumbs up/down Can any1 tell me whats wrong here: $thumbsUp = $_POST; $thumbsDown = $_POST; $id = isset($_GET) ? mysql_real_escape_string(trim($_GET)): ''; if ($thumbsUp) { mysql_query("UPDATE wcddl_downloads SET thumbsup=thumbsup+1 WHERE id='$id'"); Rating: 5