нужна помощь ... Я хочу, чтобы люди просмотрели свои формы ввода на отдельной странице, а затем подтвердили их отправку со второй страницы, как мне это сделать?
// index page
<form action="confirm.php" method="post">
<input type="text" name="uname">
<input type="submit" value="next">
</form>
<?php
$name = $_POST["uname"];
echo('
<form action="submit.php" action="post">
// trying to prefill the form so that on submit the values are sent to submit.php
<input value=$name name="username"> // setting the value to be captured in the next form = php variable $name
<input type="submit" value="next">
</form>
'
)
?>