I am trying to modify the database set up used in the tutorials, but have hit a small problem (I've no idea if it's small really). This is what I am trying to achieve:
1. User selects from three different categories.
2. I each category are 20 'essays' they can read.
3. Once they have read them, they click 'mark as read'.
So far (with one category) all good. Problem comes with the second and third category.
I have managed to make only the essays I want to appear on the tasklist page by doing this:
## The task data is tab separated
set the itemDel to tab
repeat with x = 21 to 40
put item 1 of line x of tTaskDetails into tTaskID
put item 2 of line x of tTaskDetails into tTaskName
put item 4 of line x of tTaskDetails into tCompleted
if tCompleted = true then
put "<p><strike>" & tTaskName & "</strike></p>" after tTaskList
But when I click on the top one in the second category (which should be essay number 21) it opens essay 1 (which was in the first category).
I have tried adding another table to the db, adding '+20' to the 'line x of' section and standing outside smoking, but nothing....
Sure you've guessed by now I'm new to this, but I'm not looking for the answer directly - just another hint and where or what I could / should be looking at

Cheers all
