Currently I am working on php project. I tried to bring textbox value, which is
$password = $_POST['password']
from Forgotpassword.php to Thank-You.php file.
A lot of people advised me to put include('Forgotpassword.php') on Thank-You.php but when I put include('Forgotpassword.php') on Thank-You.php, whole form from forgotpassword.php was showed on Thank-You.php. I just want to retrieve only textbox value on Forgotpassword.php.
Any idea?