twocheckout.tpl
2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<form action="<?php echo $action; ?>" method="post">
<input type="hidden" name="sid" value="<?php echo $sid; ?>" />
<input type="hidden" name="total" value="<?php echo $total; ?>" />
<input type="hidden" name="cart_order_id" value="<?php echo $cart_order_id; ?>" />
<input type="hidden" name="card_holder_name" value="<?php echo $card_holder_name; ?>" />
<input type="hidden" name="street_address" value="<?php echo $street_address; ?>" />
<input type="hidden" name="city" value="<?php echo $city; ?>" />
<input type="hidden" name="state" value="<?php echo $state; ?>" />
<input type="hidden" name="zip" value="<?php echo $zip; ?>" />
<input type="hidden" name="country" value="<?php echo $country; ?>" />
<input type="hidden" name="email" value="<?php echo $email; ?>" />
<input type="hidden" name="phone" value="<?php echo $phone; ?>" />
<input type="hidden" name="ship_street_address" value="<?php echo $ship_street_address; ?>" />
<input type="hidden" name="ship_city" value="<?php echo $ship_city; ?>" />
<input type="hidden" name="ship_state" value="<?php echo $ship_state; ?>" />
<input type="hidden" name="ship_zip" value="<?php echo $ship_zip; ?>" />
<input type="hidden" name="ship_country" value="<?php echo $ship_country; ?>" />
<?php $i = 0; ?>
<?php foreach ($products as $product) { ?>
<input type="hidden" name="c_prod_<?php echo $i; ?>" value="<?php echo $product['product_id']; ?>,<?php echo $product['quantity']; ?>" />
<input type="hidden" name="c_name_<?php echo $i; ?>" value="<?php echo $product['name']; ?>" />
<input type="hidden" name="c_description_<?php echo $i; ?>" value="<?php echo $product['description']; ?>" />
<input type="hidden" name="c_price_<?php echo $i; ?>" value="<?php echo $product['price']; ?>" />
<?php $i++; ?>
<?php } ?>
<input type="hidden" name="id_type" value="1" />
<?php if ($demo) { ?>
<input type="hidden" name="demo" value="<?php echo $demo; ?>" />
<?php } ?>
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="return_url" value="<?php echo $return_url; ?>" />
<div class="buttons">
<div class="pull-right">
<input type="submit" value="<?php echo $button_confirm; ?>" class="btn btn-primary" />
</div>
</div>
</form>