![]() |
How to Multiple File Upload with Insert Batch in CodeIgniter? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: How to Multiple File Upload with Insert Batch in CodeIgniter? (/showthread.php?tid=71777) |
How to Multiple File Upload with Insert Batch in CodeIgniter? - kirasiris - 09-23-2018 So this is the problem, I'm trying to multi file upload in CodeIgniter but I want to also send it to two tables in database also. AI = "auto_increment"; ci_posts: post_id(AI), post_image. ci_relationship: id(AI), post_id. So basically for every image uploaded to the ci_posts table, they should be submitted to the ci_relationship table as well. Here is my controller: PHP Code: public function newphoto($id){ and here is my view: PHP Code: <?php Thanks in advance. NOTE: The current output is one single image for every time I fill the form. RE: How to Multiple File Upload with Insert Batch in CodeIgniter? - InsiteFX - 09-23-2018 You need to start using Google Search and quit asking questions on here when the answer is right in front of you. I found this in like 5 seconds. Upload Multiple Files in CodeIgniter with Example |