I have on my website a form, with the following text fields,
Name, Address ,etc.
I want to be able to add text, along with the post variable, but keep it hidden.
So if they type, "103-33 77 St" in the address text field, I want to secretly add a city "New York" to the $_POST variable, without they being able to see it, or them having to type it.
<input type="address" name="address" maxlength="30" value="<?php echo $_POST['address']; ?>" />
I hope this make senses to someone :queasy: