Lisa
|
| Posted: 03/14/2002, 12:30 PM |
|
Can anyone help? I would like to show the total number of links in each category, but I have no idea where to begin.
for example
sciience(2)
History(10) --- etc
|
|
|
 |
AudiTT @ Mci
|
| Posted: 03/14/2002, 1:53 PM |
|
Sql? ASP?
|
|
|
 |
Lisa
|
| Posted: 03/14/2002, 2:13 PM |
|
Sorry I meant showing number of links per category using ASP
|
|
|
 |
Sam
|
| Posted: 03/14/2002, 5:19 PM |
|
Maybe a custom SQL string would do the trick
Something like
Select item_name count(item_name) as count_of_item_name from somewhere where condition=whatever
Group by item_name
Toodles,
Sam
|
|
|
 |
|