如何在PHP中应用多个数据?

i have my on work but still error plz help me...

if(isset($_POST['add']))
{
$id=$_POST['id'];
                $bfcp=$bfcp=$_POST['bfcp'];
                $casualwear=$_POST['casualwear'];
                $popularity=$_POST['popularity'];
                $formalwear=$_POST['formalwear'];
                $talent=$_POST['talent'];
                $questionandanswer=$_POST['questionandanswer'];
                $Total= $bfcp + $casualwear + $popularity + $formalwear + $talent + $questionandanswer;
$sql="INSERT INTO criteria (id, bfcp, casualwear, popularity, formalwear, talent, questionandanswer, Total)
values('$id','$bfcp','$casualwear','$popularity','$formalwear','$talent','$questionandanswer','$Total')
,('$id','$bfcp','$casualwear','$popularity','$formalwear','$talent','$questionandanswer','$Total')";mysql_query($sql,$conn)or die(mysql_error());

}

Plzz help me....

Use this

Your query was wrong.Please use below

if(isset($_POST['add']))
{
$id=$_POST['id'];
                $bfcp=$bfcp=$_POST['bfcp'];
                $casualwear=$_POST['casualwear'];
                $popularity=$_POST['popularity'];
                $formalwear=$_POST['formalwear'];
                $talent=$_POST['talent'];
                $questionandanswer=$_POST['questionandanswer'];
                $Total= $bfcp + $casualwear + $popularity + $formalwear + $talent + $questionandanswer;
$sql="INSERT INTO criteria (id, bfcp, casualwear, popularity, formalwear, talent, questionandanswer, Total)
values('$id','$bfcp','$casualwear','$popularity','$formalwear','$talent','$questionandanswer','$Total'");
mysql_query($sql,$conn)or die(mysql_error());

}