My current code is\[code\]<form action="post.php" method="post"><input type="text" name="post"> <br /><input type="text" name="uname" text="<?php echo $uname?>">\[/code\]I need the $uname variable to become the text in the hidden input field so that I can post it to post.php, as it was posted to this page via the previous one, and needs to be carried on. Is there a better way I could do this, like post a variable directly, instead of through an input field?