Hey all, I'm having a weird problem. I'm readying a page to eventually allow file submission, but for now I've just added the enctype="multipart/form-data" to the form declaration -- no file input field yet. The strange thing, is that on a small test page, hitting the submit button works ok (see: http://leverpoint.sharkcomm.com/submit/temp.php). However, on the real thing, it just hangs, and then just gets a DNS error (MSIE says, "Cannot find server or DNS error"). The only difference between the two pages is that one has more hidden fields than the other. Here are two samples: This DOES work: <input type="hidden" name="step" value="1"> <input type="hidden" name="farstep" value="2"> <input type="hidden" name="submitter_name" value="Mike"> <input type="hidden" name="submitter_email" value="stuff"> <input type="hidden" name="submitted" value="1"> <input type="submit" name="next" value="Test this sucker"><br> This DOESN'T work: <input type="hidden" name="step" value="6"> <input type="hidden" name="farstep" value="5"> <input type="hidden" name="submitter_name" value="1"> <input type="hidden" name="submitter_email" value="1%401.c"> <input type="hidden" name="type" value="Article"> <input type="hidden" name="restitle" value="1"> <input type="hidden" name="author_name" value="1"> <input type="hidden" name="author_email" value="http%3A%2F%2F1"> <input type="hidden" name="section_id" value="102"> <input type="hidden" name="relevancy_101" value="2"> <input type="hidden" name="relevancy_102" value="1"> <input type="hidden" name="relevancy_103" value="1"> <input type="hidden" name="relevancy_104" value="0"> <input type="hidden" name="relevancy_105" value="1"> <input type="hidden" name="relevancy_106" value="2"> <input type="hidden" name="relevancy_107" value="2"> <input type="hidden" name="relevancy_108" value="0"> <input type="hidden" name="periscope" value="0"> <input type="hidden" name="description" value="111111111111111111111111111111111"> <input type="hidden" name="keywords" value="1111111111111111111"> <input type="submit" name="next" value="Complete Submission"><br> All I can think is that perhaps the urlencode codes of the urlencoded data (see the submitter_email and author_email fields) is somehow tripping it up. You wouldn't think it would just result in hanging to a DNS error though. So, this doesn't even involve a file upload field, just the enctype="multipart/form-data" part of the form. Can anyone speculate at all at what might be causing this? I really appreciate all help. -Mike Flynn -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]