File Opening
We can perform CRUD operations in files using PHP which is similar to file handling in C-Program. To perform any read or write operation, we have to open the file first:
$fileName = "myFile.txt";
$handler = fopen($fileName, "r");
Here, ...