Multiple file upload in php

前端 未结 14 1660
轮回少年
轮回少年 2020-11-21 11:32

I want to upload multiple files and store them in a folder and get the path and store it in the database... Any good example you looked for doing multiple file upload...

14条回答
  •  梦毁少年i
    2020-11-21 12:06

    $property_images = $_FILES['property_images']['name'];
        if(!empty($property_images))
        {
            for($up=0;$up

提交回复
热议问题