Welcome Guest, Not a member yet? Register   Sign In
Creating a menu from a categories table
#5

[eluser]überfuzz[/eluser]
Slightly off topic, maybe.

A day ago, or something, I wrote that I don't like to do spit out sql querys. But when I read this thread I thought, but what if I cache the result in a file. Then I'd be able to rewrite the file only when there's no db hazard.

You need to set up proper html-tags if you try this approach/code. I'm not familiar enough with CI to scrabble it down in CI style. :red:
Code:
function makeMenu($parent = 0)
{
   $getLinks = mysql_query("/* query the menu stuff you need WHERE parent = $parent */");
   if (mysql_num_rows($getLinks) > 0)
   {
      $list = '';
      while ($row = mysql_fetch_assoc($getLinks))
      {
           $list .= makeMenu($row['id']);
           $list .= "<br />"; //Just to see if it works.
      }

   }
   return $list; // Cache this in a file!
}
Please tell me how it works... if it does. 8-/


Messages In This Thread
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:55 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:53 AM
Creating a menu from a categories table - by El Forum - 12-03-2009, 12:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 02:27 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 04:45 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:07 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 06:50 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:06 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 07:13 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 08:33 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 09:49 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 10:00 PM
Creating a menu from a categories table - by El Forum - 12-03-2009, 11:58 PM
Creating a menu from a categories table - by El Forum - 12-04-2009, 12:10 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 01:30 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:03 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:14 AM
Creating a menu from a categories table - by El Forum - 12-04-2009, 02:43 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 04:35 AM
Creating a menu from a categories table - by El Forum - 06-16-2010, 03:02 PM
Creating a menu from a categories table - by El Forum - 06-17-2010, 04:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB