I'm trying to create some input forms in PHP dynamically. It's a function which returns the html into the view. (ZF2)
In php I've got this: <input name="bla" type="text" value="bla" />
Its becoming this: <input name="bla" type="text" value="bla" >
So the slash at the end is missing. can someone tell me why?
Thanks in advance.