/** * * users will be able to login * * and for those users who have forgotten their * password and want to have a new password generated for * them and sent to the email address attached to their * account in the database. The new password is not * displayed on the website for security purposes. * * Note: If your server is not properly setup to send * mail, then this page is essentially useless and it * would be better to not even link to this page from * your website. * */ include("include/session.php"); //emulate $_SERVER['HTTP_REFERER'] which fails in IE do to third party antivirus the prevent browser tracking $_SESSION['lastPage']=$_SERVER['PHP_SELF']; //index.php in payments folder and thankyou.php in root folder share this document and require consideration of folder structure to access Pay Online page $thePayOnline_Link="payments/"; ?>
|