anyone can help on this below issue?
I could not get the state input box session value in no_account page to shopping_cart page or checkout_payment page.
Thanks in advance :)
anyone can help on this below issue?
I could not get the state input box session value in no_account page to shopping_cart page or checkout_payment page.
Thanks in advance :)
What?I could not get the state input box session value in no_account page to shopping_cart page or checkout_payment page.
More detailed explanation required
Zen-Venom Get Bitten
Im in the process of keep the input value even when press the back button.(used session)
I could do all the input except the state input box.
For Example:
(WORKING)
<tr>
<td width="80px"><label class="inputLabel" for="firstname"><?php echo ENTRY_FIRST_NAME; ?></label></td>
<td width="385px"><?php echo zen_draw_input_field('firstname', $_SESSION['firstname_session'], zen_set_field_length(TABLE_CUSTOMERS, 'customers_firstname', '40') .' id="firstname"');?></td>
NOT WORKING:
<?php
echo zen_draw_input_field('state', $_SESSION['state_session'], zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_state', '40') . ' id="state"');
if (zen_not_null(ENTRY_STATE_TEXT)) echo ' <span class="alert" id="stText">' . ENTRY_STATE_TEXT . '</span>';
if ($flag_show_pulldown_states == false)
{
//echo zen_draw_hidden_field('zone_id', $zone_name, ' ');
//echo zen_draw_hidden_field('zone_id', $_SESSION['zone_name_session'],'');
echo zen_draw_input_field('state', $_SESSION['state_session'], zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_state', '40') . ' id="state"');
}
?>
<td width="5px"><font color="#FF0000">*</font></td>
</tr>
Hello
How to get the Country Name using Session?
I need this to be printed some Credit card page.
Thanks in advance.