June 2024
Beginner
938 pages
15h 59m
English
All scripts you have seen so far can be described as “temporary”. Even though they read some input data and display some output results, all of the values are stored in variables, arrays, and other data structures that exist in the main memory (RAM) of your computer; therefore, these values are all lost when the script finishes executing. Even if this doesn't happen, they are certainly lost when you shut down your computer. There are many cases, however, where you need to keep those values in more permanent storage devices, such as a Hard Disk Drive (HDD) or a Solid State Drive (SSD).
PHP can read input data stored in a computer file or write output results in the same or a different file. This ...
Read now
Unlock full access