need a lil help, K ive searched everywhere and i cant find nething to help my situation. Which is, keeping information from one page and following it through to other pages.
ehmmmm…how about an include file displaying the list
I’ve done this before using an asp include file. All you do is copy the HTML from your list and place it into an asp include file. Then place response.write in front of every line and enclose your HTML in “”'s. Then place your HTML/ASP text in a function and just call the function from the pages you wanna display the list on.
I think what you’ll need is a PHP include. They’re very simple to use, and make editing thing so much easier. Just create a file with all of you info that needs to be displayed in every page and save it as whatever.php. the .php extension is critical.
Then, in the place where you want the info to be seen, just place this code:
Wherever you place that code the info in whatever.php will show up, and you can change all of that by editing the one file rather than every page it’s on.
Note that all of your websites page (that this is on) will have to have a .php extension rather than .html. It doesn’t get any easier than this. Hope that helped.
EDIT: Eh, didn’t realize that this post was two days old. =_= But hopefully you’ll read this…