Re: [PHP] Piping data into a select box

2002-01-13 Thread Dean Householder

Thank's for the help!
Dean

- Original Message -
From: "Jimmy" <[EMAIL PROTECTED]>
To: "Dean Householder" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Sunday, January 13, 2002 12:33 AM
Subject: Re: [PHP] Piping data into a select box


> Hi Dean,
>
> > Does anyone know how to give a select pulldown box a default value
> > from a PHP variable?
>
>  function generate_option_list ($key_value,$set) {
> // This function will return option list and set the selected attribute
> // $key_value : the associative array which contain the key and the value
for each option
> // $set : the value to be selected by deafult
> //
> // Usage: for example we want to have a dropdown list of month, and set
February as selected
> //
> //   $key_value=array("01"=>"January","02"=>"February",...);
> //   $option_list=generate_option_list($key_value,"02");
> //   //$option_list now contain text January
> //   //  February
> //
> // NOTE: This will only create the  tag, without the  tag
> //
>
>   while ( list($key,$value) = each($key_value) ) {
> if ($key==$set) {$var.="$value";}
> else {$var.="$value";}
>   }
>   return $var;
> }
>
> ?>
>
> --
> Jimmy
> 
> Leave loved ones with loving words, it may be the last time you see them
>
>
>


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




Re: [PHP] Piping data into a select box

2002-01-12 Thread Jimmy

Hi Dean,

> Does anyone know how to give a select pulldown box a default value
> from a PHP variable?

"January","02"=>"February",...);
//   $option_list=generate_option_list($key_value,"02");
//   //$option_list now contain text January
//   //  February
//
// NOTE: This will only create the  tag, without the  tag
//

  while ( list($key,$value) = each($key_value) ) {
if ($key==$set) {$var.="$value";}
else {$var.="$value";}
  }
  return $var;
}

?>

--
Jimmy

Leave loved ones with loving words, it may be the last time you see them



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