<a href="/folder/page.ext" title="Title" >Got to THIS page</a>
Is usually the simplest method.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
No No ....
I know this .....
But I want to navigate between pages with a list .....
As an example: I use this method
In content box I use
PHP Code:
<?PHP switch ($p){ default : include ("home.html"); break; case home: include ("home.html"); break; case about_us: include ("about_us.html"); break; case contact: include ("contact.html"); break; ?>
you are includign static HTML pages with some php variable ..
to use it again in php link that render HTML static page !
you have miss something important here
Code:
<a href="?p=home">Home</a>
if you want it PHP make it like this
PHP Code:
<a href="<?php $p=home ?>">Home</a>
as chrishirst said the something that switch between page are
I'm not looking for complexity
Is there a way to HTML to make a list of side effects continue to exist when moving between pages
Right! so now we get to know what you are actually after.
In HTML framesets or iframes or the ONLY way you can accomplish that.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
« Reply to What is the best way to switch between pages