I often identify each of my submit buttons with different names and identify
which one was pressed by;

If(isset($_POST["submit1"]))

Only one will ever be pressed at a time, and that allows me to use the same
page with multiple languages (substituting different values for different
languages).  As you can see I can ignore the value, and submit buttons are
not sent in the form if they are not clicked.

Another option,

Warren Vail

> -----Original Message-----
> From: Nathan Nobbe [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, January 02, 2008 10:46 AM
> To: tedd
> Cc: PHP General list
> Subject: Re: [PHP] First stupid post of the year.
> 
> 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.
> 
> 
> why dont you just style the button w/ css?
> 
> style="width:200px"
> 
> -nathan

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

Reply via email to