topical media & game development

talk show tell print

professional-search-14-seophp-index.php / php



  <?php
  // load the catalog library
  require_once 'include/catalog.inc.php';
  // load the URL factory
  require_once 'include/url_factory.inc.php';
  
  // retrieve the list of categories ordered by name
  categories = Categories::get(0, '', 'name');
  ?>
  
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html>
    <head>
      <title>Cookie Ogre's Warehouse</title>
    </head>
    <body>
      <h1>Cookie Ogre's Warehouse</h1>
      Browse our catalog by choosing a category of products:
      
  <?php
  // display each category
  echo "<ul>";
  foreach (categories as category) 
  {
    url = make_category_url(category['name'], category['id']);
    echo '<li>' . 
         '<a href="' . url . '"' . '>' . category['name'] . '</a>' . 
         '</li>';
  }
  echo "</ul>"
  ?>
  
    </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.