tags:

views:

59

answers:

2

What is the best way to create pathway with PHP (like Dailymotion)?

home > videos >search results for enrico macias mendiant de la amour  > macias enrico - le mendiant de l'amour
+8  A: 

There are no common answer to such a broad question.
It depends on the way you organize your site.
Usually the site structure being stored in database. So, usually such a path being built based on that information.

It is often called breadcrumbs and you can find some info by some googling on this term.

Col. Shrapnel
Thanks alot Col.
phpExe
A: 

I use a session for creating breadcrumbs. If user visit a page, we write in session variable a name of the page with link.

Alexander.Plutov
what if user opens 2 different pages in separate tabs?
Col. Shrapnel