Upload - CodexWorld https://www.codexworld.com/tag/upload/ Web & Mobile App Development Company Tue, 18 Apr 2023 07:16:56 +0000 en-US hourly 1 https://www.codexworld.com/wp-content/uploads/2020/04/favicon.ico Upload - CodexWorld https://www.codexworld.com/tag/upload/ 32 32 91409221 Import Excel File Data into MySQL Database using PHP https://www.codexworld.com/import-excel-file-data-into-mysql-database-using-php/ https://www.codexworld.com/import-excel-file-data-into-mysql-database-using-php/#comments Mon, 17 Apr 2023 15:11:48 +0000 https://www.codexworld.com/?p=5325 Excel is a spreadsheet used to store data in tabular form. In the web application, the Excel file format is used mainly for 2 purposes, import and export data. The import feature helps to parse

The post Import Excel File Data into MySQL Database using PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/import-excel-file-data-into-mysql-database-using-php/feed/ 3 5325
Chunk File Upload with JavaScript using PHP https://www.codexworld.com/chunk-file-upload-with-javascript-using-php/ https://www.codexworld.com/chunk-file-upload-with-javascript-using-php/#comments Fri, 17 Jun 2022 05:34:52 +0000 https://www.codexworld.com/?p=4985 There are a few ways to deal with large file uploads in PHP. The easiest way is to increase the maximum upload size limit in the PHP configuration file (php.ini) on the server. If you

The post Chunk File Upload with JavaScript using PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/chunk-file-upload-with-javascript-using-php/feed/ 2 4985
Upload Image to Imgur via API using PHP https://www.codexworld.com/upload-image-to-imgur-api-using-php/ https://www.codexworld.com/upload-image-to-imgur-api-using-php/#respond Tue, 05 Apr 2022 07:54:12 +0000 https://www.codexworld.com/?p=4914 Imgur is an online image hosting and sharing service provider. You can share images online via Imgur without hosting them on your server. If your web application has the image upload functionality and wants to

The post Upload Image to Imgur via API using PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/upload-image-to-imgur-api-using-php/feed/ 0 4914
Upload File to Google Drive using PHP https://www.codexworld.com/upload-file-to-google-drive-using-php/ https://www.codexworld.com/upload-file-to-google-drive-using-php/#comments Thu, 20 Jan 2022 16:19:28 +0000 https://www.codexworld.com/?p=4817 Google Drive is a cloud storage engine that allows users to store and share files efficiently. The files are synchronized across devices and can be accessed from anywhere. Google drive makes document management easy without

The post Upload File to Google Drive using PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/upload-file-to-google-drive-using-php/feed/ 9 4817
Upload Multiple Files with Form Data using jQuery, Ajax, and PHP https://www.codexworld.com/upload-multiple-files-with-form-data-using-jquery-ajax-php/ https://www.codexworld.com/upload-multiple-files-with-form-data-using-jquery-ajax-php/#respond Wed, 01 Jul 2020 06:38:16 +0000 https://www.codexworld.com/?p=4452 File upload with form data functionality is very useful for the web form. If you want to allow the user to send an attachment with the web form, file upload functionality needs to be integrated.

The post Upload Multiple Files with Form Data using jQuery, Ajax, and PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/upload-multiple-files-with-form-data-using-jquery-ajax-php/feed/ 0 4452
Drag and Drop File Upload with Dropzone in Codeigniter https://www.codexworld.com/codeigniter-drag-and-drop-file-upload-with-dropzone/ https://www.codexworld.com/codeigniter-drag-and-drop-file-upload-with-dropzone/#respond Fri, 10 Apr 2020 06:00:39 +0000 https://www.codexworld.com/?p=4362 Drag and Drop upload provides a user-friendly way to upload files to the server. Generally, the user selects files from the local drive to upload. But with the Drag&Drop feature, the user can drag files

The post Drag and Drop File Upload with Dropzone in Codeigniter appeared first on CodexWorld.

]]>
https://www.codexworld.com/codeigniter-drag-and-drop-file-upload-with-dropzone/feed/ 0 4362
Compress Image Before Upload using PHP https://www.codexworld.com/compress-image-before-upload-using-php/ https://www.codexworld.com/compress-image-before-upload-using-php/#comments Wed, 15 Jan 2020 18:01:18 +0000 https://www.codexworld.com/?p=4270 A large size image takes more time to load a web page. If you want to load a large image without affecting the page load time, the image needs to be optimized to reduce the

The post Compress Image Before Upload using PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/compress-image-before-upload-using-php/feed/ 2 4270
Upload Image and Create Thumbnail in CodeIgniter https://www.codexworld.com/codeigniter-upload-image-resize-create-thumbnail/ https://www.codexworld.com/codeigniter-upload-image-resize-create-thumbnail/#comments Tue, 07 Jan 2020 17:51:41 +0000 https://www.codexworld.com/?p=4264 CodeIgniter’s File Upload class helps to upload files to the server. With the Upload library, you can easily upload file in CodeIgniter. Mostly the image upload functionality is used in the web application. CodeIgniter Upload

The post Upload Image and Create Thumbnail in CodeIgniter appeared first on CodexWorld.

]]>
https://www.codexworld.com/codeigniter-upload-image-resize-create-thumbnail/feed/ 1 4264
File Upload with Progress Bar using jQuery Ajax and PHP https://www.codexworld.com/file-upload-with-progress-bar-using-jquery-ajax-php/ https://www.codexworld.com/file-upload-with-progress-bar-using-jquery-ajax-php/#comments Wed, 25 Dec 2019 18:13:59 +0000 https://www.codexworld.com/?p=4250 The file upload feature is the most used functionality for the dynamic web application. The file upload functionality can be easily implemented using PHP. Generally, the page is refreshed when you upload file using PHP.

The post File Upload with Progress Bar using jQuery Ajax and PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/file-upload-with-progress-bar-using-jquery-ajax-php/feed/ 2 4250
Preview and Rotate Image Before Upload using jQuery and PHP https://www.codexworld.com/preview-rotate-image-before-upload-using-jquery-php/ https://www.codexworld.com/preview-rotate-image-before-upload-using-jquery-php/#respond Wed, 04 Dec 2019 16:53:41 +0000 https://www.codexworld.com/?p=4232 Rotate image before upload feature allows the user to fix the photo orientation when uploading images to the server. With this feature, the user can preview the image and correct the orientation before file upload.

The post Preview and Rotate Image Before Upload using jQuery and PHP appeared first on CodexWorld.

]]>
https://www.codexworld.com/preview-rotate-image-before-upload-using-jquery-php/feed/ 0 4232