On 05-Jul-01 Richard Kurth wrote:
> 
>  I have a dropdown box that is for selecting the month How can I  be
>  verified that the customer has selected one of the months. I am using
>  verification like this but it does not do what I want for a dropdown
>  box it works fine for regular fields
> 
> if ($month == "") {
>                 
>         $month_err = "
>         <font color=red>Please enter the Month of expiration!</font><br>
>         ";
>         $send = "no";
> 
> 
> 
> 
> <select name='month' size='1'>
>         <option value='00' ></option>     
>         <option value='01' >01</option>
>         <option value='02'>02</option>
>         <option value='03'>03</option>
>         <option value='04'>04</option>
>         <option value='05'>05</option>
> 
> 
> 

  look at your <option value=xx>.

  if ( (isset($month)) && ($month +0 > 0) ) {
       ... 

Regards,
-- 
Don Read                                       [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

-- 
PHP General 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]

Reply via email to