Hello, I would like to edit some POST data before running it through some classes,
For instance, I have $_POST['amount'], I would like to add 2.00 to it. If i do something like:
$total = $_POST['amount'] + 2.00;
echo "$total";
It works, but with this class, im passing all the $_POST data through, Which means it would ignore the total var. Is there a way to "add" to the post?
Or is there an easier way to edit it within the form on submit?
T.I.A