Jump to content

Recommended Posts

Posted

Indeed it is possible.

Content management systems use Databases to list links for all the Categories and the sub-categories and articles of each of those.

Download a CMS to see how it is done. Various CMS's will handle them differently, so check out a couple of them.

Posted

<?php

$getcategories = mysql_query("SELECT FROM categories ORDER BY name ASC");

?>

<?php

while($categories = mysql_fetch_array( $getcategories ))

{

?>

<?php echo $categories['name']; ?>

<?php

}

?>

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...