Hello. Excellent tutorial. Please can you help me in 2 questions? a) How can show the dragndrop area as disabled b) Can i set a limit for photo to drag n drop? For example if someone goes to drop 25 photos, tell him "You can only 20 photos"
@rahim30705 жыл бұрын
Can I control Dropzone progress bar when uploading files in FTP ? Please show a demo with ftp upload and submit some form data into DB ...................
@VFRodriguez5 жыл бұрын
Thanks for the tutorial. One question: how can I drag o move images, or reorder images without refreshing reloading the page?
@deepgagan90158 жыл бұрын
superb !! always love your work keep it up your all videos are very helping
@jasbirsingh17298 жыл бұрын
Great channel Great work guys
@thenikola19956 жыл бұрын
I am getting Undefined index: file in upload.php when i take out isset part since it wasn't working i copy pasted code from your site and its still not working can u help me do i need to download some specific jquery version i have 2.2 and 3.3 both do not work just wont recognize file Apparently theres something wrong with my images maybe they are 2 big in size or resolution are there limitation at place since i can upload small images just fine
@SikandarKhan16958 жыл бұрын
all the tuts are great. Thanks
@santhoshkumar-sf4bc5 жыл бұрын
Sir, how to make delete option when upload multiple files.
@blackshadow3234 жыл бұрын
There you go -------------------------------------------------------------------------- if(isset($_REQUEST['submit'])) { $fileNames = $_REQUEST["filename"]; $removeSpaces = str_replace(" ", "", $fileNames); $allFileNames = explode(",", $removeSpaces); $countAllNames = count($allFileNames); for ($i=0; $i < $countAllNames ; $i++) { if(file_exists("uploads/".$allFileNames[$i]) == false) { echo"Diese Datei existiert nicht"; exit(); } } for ($i=0; $i < $countAllNames ; $i++) { $path = "uploads/".$allFileNames[$i]; if(!unlink($path)) { echo"Da war wohl ein Fehler"; } else { echo"Es wurden alle eingegebenen Dateien gelöscht"; } } } ?> -------------------------------------------------------------------------------------- Some words are german. Hope you can underastand it. If you had questions ask me
@bdexplorer.ashiqur2 жыл бұрын
super
@phpdevelopment8 жыл бұрын
thanks so much for this video and can we upload video and images by drag
@morshed208 жыл бұрын
Amazing Tutorial
@tijanimoro65286 жыл бұрын
pleas can u add a progress bar to it
@lomtar1257 жыл бұрын
I use this code, thank you. I edited this code: if I click Upload button, Ajax request will be run. And this is work. I want to a Clear button, and if I click this button, than the file[] will be clear. Somebody can help me with this?