怎么插入数据库,菜鸟求代码,
求一下数据插入数据库的代码,求详解,谢谢
$names=$_POST['name'];<br />$danweis=$_POST['danwei'];<br />$shus=$_POST['shu'];<br />for($i=0;$i<count($names);$i++){<br /> $sql="insert into tt(name,danwei,shu) values('$names[$i]','$danweis[$i]','$shus[$i]')";<br /> mysql_query($sql);<br />}