1
I’m creating a website and I’d like to know if what I want is possible. I have a page that contains contacts
<tr>
<td>Teste - 123456789</td>
<td>Teste - 987456123</td>
</tr>
This Several times and sometimes it is necessary to update with input or output of some worker. Since I have these contacts in alphabetical order, it gets boring having to sort everything out again. What I would like to know is if for example having an Excel file with this data all it update the page through it.
You have a static page where everything is updated manually?
– André Ribeiro
If you don’t have PHP or another server, you can use this script: https://github.com/SheetJS/js-xlsx
– Franchesco
I’m creating and now I’m thinking of a better chance to change it. The page only has html and css.
– ChrisAdler
How can I update the data?
– ChrisAdler