[Solved] How do i add space between this php variables
You’re generating invalid HTML. This: ‘<option value=”. $spName . ” ‘ . $spPro .’>’ ^— WITH the added space Will produce something like this: <option value=SomeName SomeProfession> The browser has no way of knowing that these two values are part of the same attribute. In short, you forgot the quotes. You want to generate something … Read more