This company I am dealing with is passing values to a page using hidden fields. An example of one of those fields is
<input type="hidden" name="Odor: Smoke / Mold" value="None">
So I have to get the value of that variable. But how do I do it when the name of the variable has spaces and slashes in it?
I tried using <?php Print $_POST["Odor: Smoke / Mold"]; ?> but I don't get anything to show. I know it has a value. They also pass one word variables such as PAINT which show just fine. It;s the multi word variables with spaces that I am having the problem with.
Any idea how get these values?
Thanks!😃