This is a part of the code that is not writing to the database. Can you help me?
case 'questao':
include "conect.php";
$bd ="questoes";
$banco = mysqli_select_db($conexao,$bd) or (mysqli_error());
$categoria=$_POST["categoria"];
$enunciado=$_POST["enunciado"];
$a=$_POST["1"];
$b=$_POST["2"];
$c=$_POST["3"];
$d=$_POST["4"];
$e=$_POST["5"];
$resposta=$_POST["resposta"];
mysqli_query($conexao, "INSERT INTO perguntas(1,2,3,4,5,categoria,enunciado,resposta)VALUES '$a','$b','$c','$categoria','$d','$e','$enunciado','$resposta' )");
echo "Questoes inseridas com sucesso";
break;