I have this menu in my site that generates from MySQL... it looks kind of like this:
option 1
option 2
option 3
.. option 3.1
.. option 3.2
.. option 3.4
.. .. .. option 3.4.1
.. .. .. option 3.4.2
.. option 3.5
.. option 3.6
option 4
option 5
...
I want the browsing of the site to be as fast as it can be even for 56k users...
Would it help if I stored $mysql_result of the menu in a SESSION variable, so it doesnt have to generate from the mysql everytime a user clicks a link?
Or is there any other way of speeding up the browsing?