Tag Archives: csv

Handling CSV data with PHP the Smart Way

Let's assume we have a file "users.csv", containing the following data: "Username","Firstname","Lastname","Age" "johndoe","John","Doe","21" "hmiller","Hank","Miller","35" Processing the data in PHP is rather straight forward, by simply using fgetcsv(). Let's display the user's name and age: // open the file for reading … Continue reading

Posted in PHP | Tagged , , , , | Leave a comment