roriscrave
Advanced OT User
- Joined
- Dec 7, 2011
- Messages
- 1,210
- Solutions
- 35
- Reaction score
- 206
When 'click in buy points' and select pagseguro method.
I selected 10 points, and the page show it:

i wand to change, to add the points (that player was showed) before "Premium Points" too


I wrote the word HERE, where I should "get" the value of the points that was chosen by the player.
How can i get this value that player chosen?
I selected 10 points, and the page show it:

i wand to change, to add the points (that player was showed) before "Premium Points" too

PHP:
<h2>Select your points:</h2>
<form target="pagseguro" action="https://<?=hhb_tohtml($pagseguro['urls']['www'])?>/checkout/checkout.jhtml" method="post">
<input type="hidden" name="email_cobranca" value="<?=hhb_tohtml($pagseguro['email'])?>">
<input type="hidden" name="tipo" value="CP">
<input type="hidden" name="moeda" value="<?=hhb_tohtml($pagseguro['currency'])?>">
<input type="hidden" name="ref_transacao" value="<?php echo (int)$session_user_id; ?>">
<input type="hidden" name="item_id_1" value="1">
<input type="hidden" name="item_descr_1" value=" HERE <?=hhb_tohtml($pagseguro['product_name'])?>">
<input type="number" name="item_quant_1" min="5" step="1" value="5">
<input type="hidden" name="item_peso_1" value="0">
<input type="hidden" name="item_valor_1" value="<?=$pagseguro['price']?>">
<input type="submit" value=" DONATE ">

I wrote the word HERE, where I should "get" the value of the points that was chosen by the player.
How can i get this value that player chosen?