Originally posted by Bobd314
'Show us the code' ??
😉
Are you looking for a 3rd party pre-written solution? Or someone to code it for you gratis? Perhaps you're just looking for suggestions on what to do next?
<?php // start a PHP script
// 1. get all categories from db
$sql=" some statement"; // create valid SQL and assign it to a string
$result=mysql_query($sql); // query the db
$array=mysql_fetch_assoc($result); // return an array of categories
// 2. print each as a link...
You just basically said "I've got this database...."
You didn't say, "I've got a problem"; you didn't say "how should I do whatever"; you DID say "I want to make a page"; ... well, what's stopping you?