Posts

Upload multiple images

  Affiliate Marketing” is absolutely not a scam, but there are “Affiliate Marketing Trainings and Courses” who might be real scammers. Doing Affiliate Marketing can bring you real nice money this is an open fact, but you need to have the right skills for it. Lemme explain you how it works Most of the people who want to do Affiliate Marketing are usually very excited and pumped in the beginning, they post their Affiliate Links anywhere and everywhere until they see that it doesn’t bring them any goods. Then they start to search Google and YouTube to get all the secrets and skills how to start making money from Affiliate Marketing. So here comes the scam part! While searching the web for all free tips and skills how to start making money, people with big promises and guarantees are waiting there for you, you only have to give them your credit card on file and you are a rich man within 2 months! And there are (broke) people who get excited of their guarantees and they are paying them for

How to upload Multiple Image files with jQuery AJAX and PHP

I have written this code which allows the user to upload images/files. The main aspect of this system allows you to upload multiple files one after another with a progress bar, not in one request. You have to only select multiple files at once and click on the start button. HTML  <input type="file" id="multiupload" name="uploadFiledd[]" multiple > <button type="button" id="upcvr" class="btn btn-primary">Start Upload</button> <div id="uploadsts"></div> Javascript Javascript <script>     function uploadajax(ttl,cl){     var fileList = $('#multiupload').prop("files");     $('#prog'+cl).removeClass('loading-prep').addClass('upload-image');     var form_data =  "";     form_data = new FormData();     form_data.append("upload_image", fileList[cl]);     var request = $.ajax({               url: "upload.php",