I've done a fair bit of coding, but haven't really done anything with the browser. I have a python script that will be running on a chron job that will auto-generate .csv output files, somewhere on a network drive. I'd like to have an intranet browser display some sort of page where users on the network would be able to choose from drop-down menus to choose what .csv data will be displayed as a graph.I was thinking of using chart.js to handle the graphs.
So, to summarize:
- I have many .csv files that will be auto-generated every couple of days on a network drive that many users have access to.
- I'd like to create an internal browser-based display of the data.
- I'm considering using php for this, but was unsure if there is a better choice.
- My code for the php/HTML/javascript/whatever I use, needs to:
- Read in the .csv files
- Take user input via dropdown menus to see what data the user wants to see.
- Display the data with something like chart.js, though I'm not sure what Javascript can play nicely with when it comes to these things.
My initial thought is to use a php page that embeds HTML and Javascript in it, but since I've never did any sort of browser-based coding, I'd be open to the opinion of anyone with more experience. Thanks!