Quick terminology question

This is a discussion on Quick terminology question within the PHP Language forums, part of the PHP Programming Forums category; What is the technical name or the name most commonly used for the below? United Kingdom >> Wiltshire >&...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-01-2007
Phil Latio
 
Posts: n/a
Default Quick terminology question

What is the technical name or the name most commonly used for the below?

United Kingdom >> Wiltshire >> Trowbridge

Basically you have a table like:
category_id, parent_category_id, category_name

Sure it has name from a fairy tale but for the life of me I can't remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Please put me out of my misery.

Cheers

Phil





Reply With Quote
  #2 (permalink)  
Old 11-01-2007
Steve
 
Posts: n/a
Default Re: Quick terminology question


"Phil Latio" <phil.latio@f-in-stupid.co.uk> wrote in message
news:EBcWi.352160$vo5.51889@fe04.news.easynews.com ...
> What is the technical name or the name most commonly used for the below?
>
> United Kingdom >> Wiltshire >> Trowbridge
>
> Basically you have a table like:
> category_id, parent_category_id, category_name
>
> Sure it has name from a fairy tale but for the life of me I can't
> remember.
> I keep thinking daisy chaining but I know it's not. Is it something from
> Hansel and Gretal?
>
> Please put me out of my misery.


a hierarchy?

other than that, your example just looks like a menu path. :)


Reply With Quote
  #3 (permalink)  
Old 11-01-2007
Geoff Muldoon
 
Posts: n/a
Default Re: Quick terminology question

Phil Latio says...
> What is the technical name or the name most commonly used for the below?
>
> United Kingdom >> Wiltshire >> Trowbridge


> Sure it has name from a fairy tale but for the life of me I can't remember.
> I keep thinking daisy chaining but I know it's not. Is it something from
> Hansel and Gretal?


Bread crumb navigation.

GM
Reply With Quote
  #4 (permalink)  
Old 11-01-2007
Chuck Anderson
 
Posts: n/a
Default Re: Quick terminology question

Phil Latio wrote:
> What is the technical name or the name most commonly used for the below?
>
> United Kingdom >> Wiltshire >> Trowbridge
>
> Basically you have a table like:
> category_id, parent_category_id, category_name
>
> Sure it has name from a fairy tale but for the life of me I can't remember.
> I keep thinking daisy chaining but I know it's not. Is it something from
> Hansel and Gretal?
>
> Please put me out of my misery.
>


Link list?

--
*****************************
Chuck Anderson • Boulder, CO
http://www.CycleTourist.com
Nothing he's got he really needs
Twenty first century schizoid man.
***********************************

Reply With Quote
  #5 (permalink)  
Old 11-01-2007
Jackie Silva
 
Posts: n/a
Default Re: Quick terminology question

yes, it is a fairy tale! this is a breadcrumb trail

"Phil Latio" <phil.latio@f-in-stupid.co.uk> wrote in message
news:EBcWi.352160$vo5.51889@fe04.news.easynews.com ...
> What is the technical name or the name most commonly used for the below?
>
> United Kingdom >> Wiltshire >> Trowbridge
>
> Basically you have a table like:
> category_id, parent_category_id, category_name
>
> Sure it has name from a fairy tale but for the life of me I can't
> remember.
> I keep thinking daisy chaining but I know it's not. Is it something from
> Hansel and Gretal?
>
> Please put me out of my misery.
>
> Cheers
>
> Phil
>
>
>
>
>



Reply With Quote
  #6 (permalink)  
Old 11-01-2007
Chris Gorospe
 
Posts: n/a
Default Re: Quick terminology question

Geoff Muldoon wrote:
> Phil Latio says...
>> What is the technical name or the name most commonly used for the below?
>>
>> United Kingdom >> Wiltshire >> Trowbridge

>
>> Sure it has name from a fairy tale but for the life of me I can't remember.
>> I keep thinking daisy chaining but I know it's not. Is it something from
>> Hansel and Gretal?

>
> Bread crumb navigation.
>
> GM

I've never heard this term before, although I'm sure it's what the OP is
looking for. If it is true, I don't see how this makes sense.

cat_id -> cat_parent -> cat

How does that relate to a trail? I agree that from start to finish it's
possible to have many alternate paths leading to other "cats", but in
the sense of navigating via a pre-made (bread crumb) trail would be more
of a direct path.

I don't know why I'm thinking so much of this. haha.
Reply With Quote
  #7 (permalink)  
Old 11-01-2007
macca
 
Posts: n/a
Default Re: Quick terminology question

They are called breadcrumbs.

see http://en.wikipedia.org/wiki/Breadcrumb_(navigation)




Reply With Quote
  #8 (permalink)  
Old 11-01-2007
Rik Wasmus
 
Posts: n/a
Default Re: Quick terminology question

On Thu, 01 Nov 2007 06:52:33 +0100, Chris Gorospe <chris@ekast.com> wrote:

> Geoff Muldoon wrote:
>> Phil Latio says...
>>> What is the technical name or the name most commonly used for the
>>> below?
>>>
>>> United Kingdom >> Wiltshire >> Trowbridge

>>
>>> Sure it has name from a fairy tale but for the life of me I can't
>>> remember.
>>> I keep thinking daisy chaining but I know it's not. Is it something
>>> from
>>> Hansel and Gretal?

>> Bread crumb navigation.
>> GM

> I've never heard this term before, although I'm sure it's what the OP is
> looking for. If it is true, I don't see how this makes sense.
>
> cat_id -> cat_parent -> cat


As a breadcurmb, it doesn't make sense, no.

> How does that relate to a trail? I agree that from start to finish it's
> possible to have many alternate paths leading to other "cats", but in
> the sense of navigating via a pre-made (bread crumb) trail would be more
> of a direct path.


Hmm, I don't really get what you're saying. While there are several ways
to enter a particular page on a site (internal links, external links,
navigation menu), I'd say a breadcrumb trail should reflect where the page
is found in the navigation. So it's not the way the user got there, rather
it is the way you expect people to find is using navigation.

Let's say for instance I do a Google search for "SELECT SYNTAX", and I
follow one of the links given. Quickly I realise this is the SELECT SYNTAX
explained of MSSQL, while I actually meant PostgreSQL. I should have
entered that in the search offcourse. However, I see a breadcrumb trail
above this page stating:
databases -> MSSQL -> Syntax -> Select

If the site is formatted properly/attractive and seems rather clear,
rather then return to the search engine I'd be tempted to click the link
'databases', to check wether PostgreSQL is an option there..
--
Rik Wasmus
Reply With Quote
  #9 (permalink)  
Old 11-01-2007
Phil Latio
 
Posts: n/a
Default Re: Quick terminology question

> Bread crumb navigation.

.... and the winner is Geoff who wins a year's supply of virtual beer. Many
thanks.

Cheers

Phil






Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 09:28 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0