On Jan 2, 2008 1:34 PM, tedd <[EMAIL PROTECTED]> wrote:
> Hi gang:
>
> I have a
>
> $submit = $_POST['submit'];
>
> The string contains:
>
> &nbsp; &nbsp; &nbsp; &nbsp;A&nbsp; &nbsp; &nbsp; &nbsp;
>
> (it's there to make a submit button wider)
>
> How can I strip out the "&nbsp;" from the $submit string leaving "A"?
>
> I've tried
>
>     trim($submit);
>
> but, that don't work.
>
> Neither does:
>
>     $submit = str_replace('&nbsp;','',$submit);
>
> or this:
>
>     $submit = str_replace(' ';','',$submit);
>
> I should know what to do, but in this case I don't.
>
> Help is always appreciated.

<?
// Your existing code here....
$submit = trim(str_replace('&nbsp;','',$submit);
?>

-- 
Daniel P. Brown
[Phone Numbers Go Here!]
[They're Hidden From View!]

If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.

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

Reply via email to