You'll need a scripting language like PHP to enable dataflow between two pages.
If you create a link like this:
HTML Code:
<a href="filename.php?name=text">Click me</a>
Then in the filename.php you can catch and print it with the following code.
PHP Code:
if(isSet($_GET['name'])) echo $_GET['name'];
There are a lot of other ways of doing this, but you will need to use a scripting langauge.
|