Categories
PHP

Reading and Writing CSV Files

CSV is a file format and stands for “comma-separated values”. In this tutorial, we use the fgetcsv() function to read a CSV file and fputcsv() function to write CSV records into a file.

Categories
PHP

Writing or Appending to Files

Writing to files is as easy as reading from them. In this tutorial, we’ll use the file_put_contents() and fwrite() functions to write and append to files. You’ll also learn how to lock files to avoid trouble when one process writes while the other one reads.

Categories
PHP

Reading files by line or by character

In this tutorial, you will learn how to parse large files, keeping the system’s memory safe. We will use the PHP functions (fgets, fgetc, and fread) that can read chunks of the file content at a time.

Categories
PHP

Opening and Closing Files

fopen() is the function to open a file on disk as a resource. This function gives you access to any file and its contents. When you open a file, you can open it for several purposes, for example, reading, writing, and appending (adding information to the end of the file).

Categories
PHP

Reading a File into a String or Array

To read data from a file, PHP offers several possibilities. Probably the easiest way is to read it all at once with file_get_contents() function and then output it to the user or read it line by line with file() function.

Categories
PHP

Returning or Downloading Files with an HTTP Request

Learn how to force download files in PHP and how to generate a TXT, CSV, or JSON file on the fly from a string and send it to the browser.

Categories
JavaScript

Using AJAX

Ajax (Asynchronous JavaScript and XML) allows you to send and retrieve data from a server asynchronously and process the data using JavaScript. In this tutorial, we create, configure, and execute AJAX requests.

Categories
PHP

AJAX Multiple Files Upload

In this tutorial, we’ll create an AJAX form that can upload and validate multiple files.

Categories
PHP

Uploading Multiple Files and Directories

Learn how to handle multiple file uploads in PHP. You’ll also learn how to select directories (instead of files) with the directory picker attribute and upload the directories content to the server. You’ll also use the new feature “full_path” (as of PHP 8.1), a subkey of $_FILES array to create the exact directory structure of uploaded directories.

Categories
PHP

Renaming and Sanitizing Uploaded File Name

In this tutorial, you’ll create functions to automatically rename the uploaded file name, generate a unique file name based on the Unix timestamp, and remove special characters to sanitize the file name.