my code in tpl file:
PHP Code:
$pulldown_array = array();
$pulldown_array[] = array('id' => '0', 'text' => please select);
$pulldown_array[] = array('id' => '1', 'text' => option a);
$pulldown_array[] = array('id' => '2', 'text' => option b);
zen_draw_pull_down_menu('pulldown', $pulldown_array)
my code in header_php.php
PHP Code:
$my_email_text = $pulldown;
if i select option a, i get the email content "1", but i want to get the email content "option a"
if i change the code to
$my_email_text = $pulldown_array['text']
then i get nothing display in email
any help?