I am inserting input form into two different tables. the first table is for the information, and the other table is for images of the information.
When I submit the information, I would like to upload multiple images per a row of the first table in separate table, and also insert last_insert_id to each images into the second table.
table1
location ID | address | contact information
table2
pictureID | location ID | filepath
With the following code, it only inserts one image, but it uploads all the images into the folder.
<?php
include_once 'dbconnect.php';
mysql_query("SET NAMES UTF8");
session_start();
$tbl_name="location";
$tbl_image="image";
if(isset($_POST['btn-upload'])){
$name2=$_POST['name2'];
$phone=$_POST['phone'];
$email=$_POST['email'];
$type=$_POST['type'];
$other=$_POST['other'];
$description=$_POST['description'];
$address=$_POST['address'];
$name=$_POST['name'];
$lat=$_POST['lat'];
$lng=$_POST['lng'];
$country=$_POST['country'];
$administrative_area_level_1=$_POST['administrative_area_level_1'];
$place_id=$_POST['place_id'];
$url=$_POST['url'];
$website=$_POST['website'];
$sql="INSERT INTO $tbl_name(name2, phone, email, type, other, description, address, name, lat, lng, country, administrative_area_level_1, place_id, url, website) VALUES ('$name2', '$phone', '$email', '$type','$other', '$description', '$address', '$name', '$lat', '$lng', '$country', '$administrative_area_level_1', '$place_id', '$url', '$website')";
$result=mysql_query($sql);
for($i=0; $i<count($_FILES['image']['tmp_name']); $i++)
{
$file = rand(1000,100000)."-".$_FILES['image']['name'][$i];
$file_loc = $_FILES['image']['tmp_name'][$i];
$file_size = $_FILES['image']['size'][$i];
$file_type = $_FILES['image']['type'][$i];
$folder="uploads/";
// new file size in KB
$new_size = $file_size/1024;
// new file size in KB
// make file name in lower case
$new_file_name = strtolower($file);
// make file name in lower case
$final_file=str_replace(' ','-',$new_file_name);
$res=mysql_query("SELECT * FROM users WHERE userId=".$_SESSION['user']);
$userRow=mysql_fetch_array($res);
$userID=$userRow['userID'];
if(move_uploaded_file($file_loc,$folder.$final_file))
{
$sql="INSERT INTO $tbl_image(user_ID, Location_ID, file) VALUES('$userID', LAST_INSERT_ID(), '$final_file')";
mysql_query($sql);
?>
<script>
alert('successfully uploaded');
window.location.href='index.php?success';
</script>
<?php
}
else
{
?>
<script>
alert('error while uploading file');
window.location.href='index.php?fail';
</script>
<?php
}
}
if($result){
echo "Successful";
echo "<BR>";
echo "<a href='index.php'>Back to main page</a>";
}
else {
echo "ERROR";
}
if($result1){
echo "Upload Successful";
echo "<BR>";
echo "<a href='locationform.php'>Back to main page</a>";
}
else {
echo "ERROR";
}
}
?>
<?php
// close connection
mysql_close();
?>