I seem to be having unclear results for this but how do you code in PHP to open a file browser dialogue window on click of a button so the user can select a csv file. I do not want to upload the csv file, I only want to read it's content. I read about fgetcsv but the sample codes seem to jump to reading each contents without the part where it selects the file first. I hope you guys can shed light.
What I need: Sample PHP code to browse a file without uploading, maybe get it's file path so I can then try using fgetcsv to read the contents of that file path.
Bonus if I'm not asking too much: How to read the csv file contents and get specific value for each rows/records.