
January 22nd, 2000, 06:55 AM
|
|
Contributing User
|
|
Join Date: Jan 2000
Location: Sweden
Posts: 384
Time spent in forums: 1 Day 20 h 39 m 54 sec
Reputation Power: 14
|
|
|
Hello.
I have a problem with transmitting information from one, to another file in PHP.
This is how I do:
<form action=step1.php3>
<textarea rows="2" name="message" cols="20">
<input type=submit>
</form>
Step1.php3:
<form action=step2.php3>
<input type=hidden name=message value=<?php echo $message ?>>
Information2: <input type=text name=info2><br>
<input type=submit>
Step2.php3:
Message: <?php echo $message ?>
When I come to step2, the message is only one word long.
What´s wrong?
Regards,
Christoffer
SWEDEN
|