Fu Manchu
Sepultra™
- Joined
- Jan 28, 2011
- Messages
- 439
- Reaction score
- 9
I'm using the paypal script from the the shop system andres created. Basicly it only had one option for payment amounts. I'm trying to make it so there are multiple.
example
This part was removed from the gesior script. Now I'm trying to figure out how to add it to this.
If any one has any idea please let me know. This website is the only thing holding me up from progress atm. Any thoughts or any questions feel free to ask. thx guys
Side note: Im pretty sure i could tell another script not to read that file. And add that first set of code to another file and it work. But I'm not sure. It's from an htm file. And I'm trying to add it into a php.
example
PHP:
<select name="amount">
<option value="5.00">5 USD</option>
<option value="10.00">10 USD</option>
<option value="20.00">20 USD</option>
</select>
This part was removed from the gesior script. Now I'm trying to figure out how to add it to this.
PHP:
<?php
$config['donations']['methods'] = array('ContenidoPago' => false, 'PayPal' => true);
$config['donations']['paypal'] = array('Mail' => '[email protected]', 'Points' => 6, 'Product' => 'Donation for VipHera', 'Money' => 'EUR', 'Amount' => 1);
$config['donations']['contenidopago'] = array('Product' => '1347', 'Points' => 4);
?>
If any one has any idea please let me know. This website is the only thing holding me up from progress atm. Any thoughts or any questions feel free to ask. thx guys
Side note: Im pretty sure i could tell another script not to read that file. And add that first set of code to another file and it work. But I'm not sure. It's from an htm file. And I'm trying to add it into a php.
Last edited: