Changes by last author:
Added:
* Not currently annoying users with the GDPR nonsense (which basically punishes the user when using fresh browser or purging cookies - effectively taking away the users' freedom while claiming the opposite - with laws, that's not unusual). |
----
PHP notes Should check some deprecated vars, namely avoid $PHP_SELF ( see [PHP docs] ) and $_POST needed now instead of deprecated $HTTP_POST_VARS eg.: <CODE> - "x_var2" => $HTTP_POST_VARS['formvar2'], + "x_var2" => $_POST['formvar2'], -<form id="payform1" method=POST action="<?php echo $PHP_SELF; ?>" > +<form id="payform1" method=POST action="" > Otherwise use $_SERVER['PHP_SELF'] instead of $PHP_SELF </CODE> |