Hi all -
I agreed to help a buddy out with a simple page he needs built in PHP....the scenario is something like this: there would only need to be 2 screens - a User Screen where people can drill down to locate specific file types - call them resources, and an admin screen where you could add (new resource entries) / edit or delete (existing resource entries)
User Screen Would be:
Drop Down #1: Select Grade (K-12)
Drop Down #2: Select Subject (Math, English, Science, etc...)
Drop Down #3: Select Resource File Type (Word Doc, Excel Doc, PDF Doc, etc...)
Admin / Entry Form Screen would be:
same as above, but be able to add some attributes to the Resource File like: Description, Other helpful links, etc...
and then the ability to submit this info. The next time the user used the page, this content would be available for viewing...the admin screen should also allow the admin to edit or delete existing entries
this would be a very simple fix using a mysql database - could probably plop everything into one table for simplicity and have a working page in 1/2 hour or so....however
a mysql database isn't an option - I'd like to give him something that affords at least the primary functionality of a mysql database (Insert new entry, Edit/Update an entry, and delete an entry) - but I'm not sure the best way to proceed if mysql isn't an option....anyone have any ideas for the best route to take?