Re: [PHP] Browsing Into Levels

2005-08-30 Thread areguera
Thanks for the replay. > >> They are called breadcrumbs: > >> http://www.google.com/search?q=php+breadcrumbs I didn't know the key :) (breadcrumbs), so it is now a very good help to me. > > use either the existing directory/file > > structure or a hard-coded array of your site structure to cre

Re: [PHP] Browsing Into Levels

2005-08-30 Thread Jordan Miller
you may not need anything fancy like a class for regular breadcrumbs or these BreadcrumbsExtremeâ„¢ that you describe. i usually do simple breadcrumbs with a simple function. for the extreme version, just store an array of recently viewed pages in a session variable, and parse this array when

Re: [PHP] Browsing Into Levels

2005-08-30 Thread Greg Schnippel
Good answer, I think thats what they were looking for but just in case: Most of the breadcrumb classes out there (at least the ones that showed up in an initial google search) use either the existing directory/file structure or a hard-coded array of your site structure to create the breadcrumbs

Re: [PHP] Browsing Into Levels

2005-08-30 Thread Jordan Miller
They are called breadcrumbs: http://www.google.com/search?q=php+breadcrumbs Jordan On Aug 30, 2005, at 4:57 AM, areguera wrote: Hi, I been wondering the best way to make the level browsing, I mean, those links up in page which tell you the position you are, and make you able to return secti

[PHP] Browsing Into Levels

2005-08-30 Thread areguera
Hi, I been wondering the best way to make the level browsing, I mean, those links up in page which tell you the position you are, and make you able to return sections back, keeping some kind of logic of where you are. I been used the url vars to do this but I arrive some point where there are coi