Part of my form information is getting cut off. I have no idea why does anyone know?
Im sending form information to a MySQL Database.
Could it be because of spaces? I noticed it only cuts off once it hits a space dont know if thats why.
It would be because you're not quoting your form field attributes, as per the HTML specification.
<input type=text value=this has a space in it>
alright that looked like that was the problem. thanks.