hello i have a page where users can register, and so after registeration i want to pass the username and password from my registeration form to another form on a next page, mean while this form on the next page should hold username and password values that are passed from the first page.
the form is echoed correctly but the values dont come correctly.
this is what i ahve tried
echo '<form ACTION="<?php echo $loginFormAction; ?>" METHOD="POST" name="one" id="one">
<input type="text" placeholder="Username" name="Username" value="<?php echo $_POST["Username"]; ?>" >
<p> </p>
<input type="password" placeholder="Password" name="Password" value="<?php echo $_POST["Password"]; ?>">
<br>
<input name="Submit" type="submit" class="btn" value="Sign In" />
</form>';
but the values dont come out, is there a right way to echoe this thanks