Only problem is that the '' in my $hidden['default_value_calc'] filed is going to change. For this one, I want to multiply the values, but I may want to add in another. I could addd another field where I would put in the proper , +, - or /, but what happens if I need to have more equations?
Ideally, I'd really like to have just ONE field where I can write a query like this:
... field_value='" . $hidden['default_value']."'
and the default_value field (which I'm pulling from MySQL) is something like "$_POST['value2'] * 2"
Does anyone know if that's possible?