Hello, I'm working on getting paypal useable on site, but I'm confused with
ipn.php:
and paypal.htm:
is it correct?? (10 -> 20, what it means? 10 euro?)
ipn.php:
Code:
$prices = array('10.00' => 20, '20.00' => 40, '30.00' => 60, '40.00' => 80);
and paypal.htm:
Code:
<select name="amount">
<option value="5.00">5 EUR</option>
<option value="10.00">10 EUR</option>
<option value="20.00">20 EUR</option>
</select>
is it correct?? (10 -> 20, what it means? 10 euro?)