okay, here is what I have so far...
<< function process_button() {
global $_SERVER, $order;
$sequence = rand(1, 1000);
$process_button_string = zen_draw_hidden_field('x_Login', MODULE_PAYMENT_WTF_LOGIN) .
zen_draw_hidden_field('x_Card_Num', $this->cc_card_number) .
zen_draw_hidden_field('x_Exp_Date', $this->cc_expiry_month . substr($this->cc_expiry_year, -2)) .
zen_draw_hidden_field('x_Amount', number_format($order->info['total'], 2)) .
// zen_draw_hidden_field('x_currency_code', $_SESSION['currency']) .
zen_draw_hidden_field('x_Cust_ID', $_SESSION['customer_id']) .
zen_draw_hidden_field('x_first_name', $order->billing['firstname']) .
zen_draw_hidden_field('x_last_name', $order->billing['lastname']) .>>
and so on. then we have:
<< return $process_button_string;>>
okay, so I should be able to write in something like....
zen_draw_hidden_field('x_name', $order->products['name']) .
zen_draw_hidden_field('x_model', $order->products['model']) .
to get all of my happy product names/model numbers.
except that I need a loop to get all of the products and this product array in order.php has an index number and i'm now trying to figure out the syntax I need to pull that data.
beautiful. lovely. gorgeous.
(sotto voce muttering)
<officeSpaceBoss> um... yeah </officeSpaceBoss>



