This line is missing a comma:
$Query .= "banner_images="".$banner_images.""";
should be
$Query .= "banner_images="".$banner_images."",";
As a sidenote, you are vulnerable to sql injection with your code, you might want to use prepared statements or at least mysql_real_escape_string
3
solved Radio Button not working [closed]