In addition to my comment (added semicolons):
$que = "INSERT INTO answer_det VALUES('$pid5','','$aid1','$answ1','$point1');";
$que .= "INSERT INTO answer_det VALUES('$pid5','','$aid2','$answ2','$point2');";
$que .= "INSERT INTO answer_det VALUES('$pid5','','$aid3','$answ3','$point3');";
$que .= "INSERT INTO answer_det VALUES('$pid5','','$aid4','$answ4','$point4');";
$run = mysqli_multi_query($mysqli,$que);
Refer to the PHP manual where it clearly reads:
Performs one or more queries that are joined by a semicolon.
source
share