thank you mate,code worked first time,very clear and concise
@clementechs4 жыл бұрын
thanks brother it was very usefull
@makitweb3 жыл бұрын
Glad it helped
@stb43274 жыл бұрын
I have already subscribed and Liked
@stb43274 жыл бұрын
You are amazing!
@musiclovers84884 жыл бұрын
So simple ... neat and clean code ... can I ask you something ?
@beto22654 жыл бұрын
muchas gracias, buen video
@makitweb4 жыл бұрын
De nada.
@MrAersth2 жыл бұрын
who can i send fd(file), and other values, input text value for example, i try this data: {fb, input value}, whitout results. nice video
@makitweb2 жыл бұрын
Append the other values in FormData object like this - var name = "Yogesh"; var city = "Bhopal"; fd.append('file',files[0]); // File fd.append('name',name); // Name fd.append('city',city); // City In the PHP file read name and city using POST. $name = $_POST['name']; $city = $_POST['city'];
@MrAersth2 жыл бұрын
@@makitweb Thanks, u are my hero now, you have not idea how many days try to resolve this, i have only one more question, i try to send this radio buttom in the var var_name = $('input[name=radio_name]=checked', '#form_id').val() fd.append('var_name', var_name); , but whitout results, i try like other var but nothing. again THNKS
@makitweb2 жыл бұрын
Read the value of radio button like this - var var_name = $('input[name="radio_name"]:checked').val(); fd.append('var_name', var_name);
@hosseinhasanpouri54073 жыл бұрын
this was help me , thank you :)
@makitweb3 жыл бұрын
You're welcome!
@umangternate4 жыл бұрын
How to write the value of URL (in ajax script) if the files are not in the same folder? For example, if the jscript is in a different folder but is included in the index.php and the upload.php is also in a different folder, how to write the url value in the javascript/ajax code?
@abimbolaoladunni17254 жыл бұрын
Very helpful video Mr. Yogesh Singh. What if I want to upload both image and video file
@makitweb4 жыл бұрын
Hi Abimbola, You have to add video file extensions in the $valid_extensions Array.
@adamfidler99454 жыл бұрын
Thankyou. It would be good if you could do image upload with text to my sqltoo.
@arslanazam45425 жыл бұрын
Is data also send to db
@makitweb5 жыл бұрын
Hi Arslan, No data is not send to database. You can view this tutorial -kzbin.info/www/bejne/apW4YqyJa86qfas to know how to save image to database.
@stepone30404 жыл бұрын
Working good thanks
@makitweb4 жыл бұрын
You're welcome.
@aacv4 жыл бұрын
not working on android
@emmanuelsiziba51425 жыл бұрын
nice
@carlosvieirax55 жыл бұрын
How can i send fd+string? (data: fd, id,)
@makitweb5 жыл бұрын
Hi Carlos, You need to append data to FormData object for sending value to AJAX file. Example - fd.append(name,'Yogesh'); fd.append('city','bhopal');. Here, fd is the FormData object.
@donnfredericklucas97053 жыл бұрын
Sakeeet
@АянЖанганысов-б5в4 жыл бұрын
братан хотя бы временами проверяй работает ли твой код