Hello,
I was doing a lot of reading on the web, regarding modifying $_POST input and why its probably not a good idea. I couldnt quite understand why it shouldnt be done.
What i am trying to do is create an input, <input type="text" name="moo" value="<?php $total = $_POST['moo'] + 2.00; echo $total; ?>">
The idea is to add 2.00 to whatever they enter.
Is this truly a bad idea, Or am i probably looking over an easier solution?
Any help is much appreciated