我想通过单击一个按钮在数据库表中添加多个数据,我该怎么做?
<?php
if( isset($_POST['add']) ){
$ins = "INSERT INTO informations(`cate_id` ,`location_id` , `name` ,`specialization` , `address` , `telephone` , `time`) VALUES(
'".$_POST['category']."',
'".$_POST['location']."',
'".$_POST['name']."',
'".$_POST['specialization']."',
'".$_POST['address']."',
'".$_POST['telephone']."',
'".$_POST['time']."')";
$do_ins = mysql_query($ins);
echo 'Insert done';
}
?>