In my form I have the following values that are based on a standard PHP/MySql query.
echo \"\\n
Locati
-
You need to put your single quotes around it to make it a valid attribute. The HTML is being created as value=North Campus
which gets interpreted as value="North"
and some Campus
attribute that has no value. Use value='$location'
.
- 热议问题