I jsut finished converting my pages to be W3C compliant...
One of the recuring 'errors' I had was my form elements were all using the 'name' atrtribute...
apparently, this is bad, and I was suggested to switch them ti use the 'id' attribute...
all good, I did that, but for some reason, when I post that info to another page, it's not carried over...
name works fine, id does not...
Am I being a tool? What am I supposed to use...?
I use $_POST[variable] in my code..., so I tried just $variable... that failed too...?
Thoughts?
Tris...
The name attribute on forms is not usually needed, and I have used the id attribute before and they work fine. Do you have names on each input, select, or any of the other form elements you may have? Use these to extract the form information, and it should work just fine.
-- Jason Giangrande <[EMAIL PROTECTED]> http://www.giangrande.org http://www.dogsiview.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php