Right, i'm going to start working on it again, i had a break 'cause i got sick of it from working on it so much
I still need to understand how to be able to click on the categories and it take me into the list and then click on an item in the list to take me into a tutorial. Although this is the complicated way to do, it's just the way i want it done
PHP Code:
echo "<a href=\"id=" . $line['id'] . "&category=" . $line['category'] . "\">"
. $line['title'] . "</a> by " . $line['author'] . ", posted on the: " . $line['date'] .
"<br><blockquote>" . $line['explanation'] . "</blockquote>";
So something along those lines but simpler for displaying all the tutorials in that category.
PHP Code:
echo $row["category"]." (".$row["cat_count"]." items)<br /><br />";
If that's what i've got, i'll probably need to put
PHP Code:
<href=\"id=" . $line['id'] . "&category=" . $line['category'] . "\">"
I would then put what is to be displayed such as the category and how many items are in that category. I would have to link to a seperate file right?
It's all very confuzzling