Michael Ed wrote:
> Tim Wappat wrote:
> >
> > Visiting many sites such as builder.com you find that there is a bread
> > crumb style navigation line on the page that lets you get back to a point in
> > history and visually relays where you are in the structure of the site.
> > e.g.
Here's what we use:
<? function pwalk($id, $lev) {
if (!$id || !($p = mgd_get_page($id))) return;
pwalk($p->up,$lev+1);
for ($i=$lev;$i;$i--)
$url=$url . "../";
if ($url) printf('<a href="%s">',$url);
printf('%s', htmlentities($p->title));
if ($url) printf('</a> : ');
}
pwalk($midgard->page.up,0);
?></p>
>
> >
>
> ... well Emile is trying to help med with some dynamic menu stuff too.
> I think he's away right now. It's a bit abstract, but get him to mail
> you the outline ... and take it from there.
>
> I'll be back on monday, if you want to "test drive" my stuff.
>
> Regards,
> Blixten
>
> ------------------------------------------------------------------------
> --
> This is The Midgard Project's mailing list. For more information,
> please visit the project's web site at http://www.midgard-project.org
>
> To unsubscribe the list, send an empty email message to address
> [EMAIL PROTECTED]
--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org
To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]