Jump to content

Which technique - there are so many!


LostInSpace

Recommended Posts

Hello everybody,

I am seeking your guidance. I was reasonably technical but have been away from web programming for many years and so feel a bit lost!

What I need to make is a 1-page website that lists data records, which the user can filter based on selectale properties and/or text match. The screen must react to the filter choices and update itself.  

The data can be loaded from anything, even a csv file is ok.  Data is read-only.

Estimate 10,000 records, just a flat table of simple text, of between 100-400 characters each.

Development is on Mac OS.

Whatever I need I'm willing to learn, but want to make the right choice. I initialy though MySQL but found it complex to even set up. Javascript objects...dynamic html...  mmmm

 

Thank you so much for reading.

 

 

Link to comment
Share on other sites

If you want to use a database as the data store then that's one route to take, but if the data is static then you could get away with a CSV file or something.  You wouldn't even necessarily need to use a server-side language like PHP to build the table (although you could), you could just send an ajax request in Javascript to get the CSV file and parse it in Javascript and go through it to build the table dynamically.  Once the table is built and on the page then you'll probably just want to use a jQuery plugin or something for sorting and filtering.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...