How does the output array write to the database?
How does the output array write to the database?
2 values to write to 2 fields.
Array ([0] = upload/2015/09/06/20150906164734000.jpg [1] = Upload/2015/09/06/20150906164734001.jpg
------to solve the idea----------------------
1. Iterate through the array, inserting one element at a time
2, connected into a string after inserting
What to do is according to your needs, and no fixed pattern
You are the master of the program, not the slave of the program.
------to solve the idea----------------------
foreach ($arr as $v) {
mysql_query ("INSERT into Tbname (Image_url) VALUES ('". $v. "')");
}
------to solve the idea----------------------
0 corresponds to the first 1 corresponds to the second one depends on how you design ....
------to solve the idea----------------------
$sql = "INSERT INTO table (img1,img 2) VALUES (' $p->upload_file[0] ', ' $p->upload_file[1] ')";