Hi -
I'm creating a feedback form where I would like to have the subject field of a form generated by php. ie the user enters all the other fields, but the subject would be relevent to the page currently generated. The code I have looks like this:
<input type="text" name=PackageName value=<?PHP printf("%s", $myrow["name"]); ?> size="30">
This actually works, except it only show as much text in the 'name' field before a space - for example, if the 'name' is "Classy Buenos Aires", when the form is generated, all that you see is "Classy"
Any ideas?
Thanks
Gordon