At 3:16 PM -0500 1/2/08, Wolf wrote:
> --
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
$string=" A ";
$string=str_replace(" ","",$string);
$string=ltrim(rtrim($string)));
echo "The string is now:$string\n";
Outputs:
The string is now:A
Wolf
While that does, that's not the problem.
The problem is:
<input type="submit" value=" A  ">
via this:
$submit = $_POST['submit']
to produce:
A
Cheers,
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