At 11:27 AM -0800 1/2/08, Jim Lucas wrote:
The problem is, is that you are not getting

Apparently, that makes two of us.  :-)

       A       
when you submit your form.

It is being URL encoded by the browser and you are actually getting

 %20 %20 %20 A %20 %20 %20 

So, what you need to do is this

$submit = urldecode($submit);// This will take care of the %20 for spaces
$submit = str_replace(' ','',$submit); // This takes out the encoded entities

That should take care of your problem.

Good idea, but it still don't work -- try it.

Thanks.

tedd
--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to