hi to all.
how i can have well formed tags, in a
echo function like this:
echo "<input name=child[] type=text>";
...that give attribute text attribute without " " around, but if i mod. the echo function for example like here:
echo "<input name=child[] type="text">";
the php parser give error,
in what i'm wrong? How i can solve it?
thanks!