April 6, 2022 at 9:38 PM
Hello...
Here I am going to share snippets of code I use to parse the CSV and print data inside.
You can technically do the same with cat or head commands on POSIX but this will help you to iterate data and post it into your own API endpoint, or Insert into external databases etc.
I can also suggest using cat or head commands on POSIX terminal to see what is inside.
$ cat filename.csv
$ cat filename.json
Here how to read files
Here is how I receive data in PHP on my endpoint:
If you want me to post the PHP file that receives data just answer to this thread.
Here I am going to share snippets of code I use to parse the CSV and print data inside.
You can technically do the same with cat or head commands on POSIX but this will help you to iterate data and post it into your own API endpoint, or Insert into external databases etc.
I can also suggest using cat or head commands on POSIX terminal to see what is inside.
$ cat filename.csv
$ cat filename.json
Here how to read files
Here is how I receive data in PHP on my endpoint:
If you want me to post the PHP file that receives data just answer to this thread.


