Forum Moderators: coopster
I want to make a page that will insert simple text (or perhaps html) into a page. The file inserted depends on the prior link clicked (which means data must be passed). Here's the page I'm trying pass data from www.mysite.ws/codeex.php to display.php. If you look at the one link on the codeex.php, I'm currently trying to get it to pass data.
Tips are more then welcome. :)
[edited by: jatar_k at 6:05 am (utc) on Feb. 11, 2003]
[edit reason] no urls please [/edit]
It's probably worth noting that symlinks and $_SERVER['PHP_SELF'] is only good for situations where you know ahead of time what all the valid values for your variables are, and there are few enough of them that you can set up all the right symlinks easily. It really wouldn't scale well. I don't think I'd even reccoment it for two variables, let alone more.
I can think of ways to work around these limitations, too, but they all get sufficiently Bizantine that you might as well just learn mod_rewrite.
As for the not scaling well part there is always a shell/perl/php script that could create those for you. But I guess those were the Bizantine ways that you mentioned ;)
Andreas
Thanks.