Does anyone want to take a try at creating the CodyTasks idea that we tossed around a little while ago?
The idea is to have a script that would keep track of some # of tasks and who had completed each one.
Some more details, keeping things as simple as possible:
Admin can create a text file (or database table) that lists tasks.
At first i think the task completion will be completely on the honor system, so users should see the list of tasks and be able to check tasks they complete. Eventually it would be nice to be able to say some tasks can only be marked complete for a user by the page admin.
So when a user visits the page the script should look up their username and show them the list of all tasks and which ones they have accomplished, and let them mark tasks they have completed. Where do user names come from? We will interface the script to the forum database, so the script should simply include a function call to "getusername" which will sometimes simply return null, meaning the user isnt logged in and so there is nothing for them to do.
Lastly, we would also want it so users could see a list of all people who have accomplished tasks.
Any takers?