RE: [PHP] "location bar"

2001-08-16 Thread Kurth Bemis
At 06:14 PM 8/15/2001, Wolfgang Schneider wrote: oops - i forgot - I use functions similar tp the ones used on php.net. when i call the function i pass $title to it define $title and it should work. :-) ~kurth >On Tue, 14 Aug 2001 11:39:55 -0400, Kurth Bemis wrote: > > >just stick this

RE: [PHP] "location bar"

2001-08-15 Thread Wolfgang Schneider
On Tue, 14 Aug 2001 11:39:55 -0400, Kurth Bemis wrote: >just stick this in a function as I did and you'll be sailing.its easy >to update, and Extremely flexible. > >look at my code.. (rest snipped) Hi Kurth, and others I adjusted your code for the purpose of my site (replacing he values i

RE: [PHP] "location bar"

2001-08-14 Thread Kurth Bemis
At 11:02 AM 8/14/2001, Kevin L wrote: I had a similar problem.jason murray gave me some ideas ;-) just stick this in a function as I did and you'll be sailing.its easy to update, and Extremely flexible. look at my code.. Location : http://www.usaexpress.net";>Home / 'Company',

RE: [PHP] "location bar"

2001-08-14 Thread Kevin L
The navigation system you are refering to is called breadcrumb navigation. You can find implementations of this all over the place. Try hotscripts.com or google.com. Kevin -Original Message- From: Wolfgang Schneider [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 14, 2001 12:35 AM To:

RE: [PHP] "location bar"

2001-08-13 Thread Maxim Maletsky
if you're asking on how to show where you are, then this is what you could do: Create an array of page names: ie: $page_name = Array( '/' => 'Home', '/page1' => 'Page One' ); ... and so on Then just do echo $page_name[strtolower($PHP_SELF)]; This is only appropriate f