I am using a OS script. The portion of the form mentioned below is gives no out put please help: it is a paypal processor script supposed to open an paypal payment page at the same time write the amout in database? what ia krong with this scripts? Please help
<form method="POST" action="webmasters.php">
<input type="hidden" name="manage" value="2">
<input type="hidden" name="deposit" value="money">
<big><B>Deposit Money</b></big>
<p>
<strong>Amount:</strong> <? echo $currencytype . '' . $currency; ?><input type="text" name="deposit2" maxlength="7" size="6">
<p>
<strong>Payment Method:</strong><br>
<?php
if ($deposit2checkout !== "" || $depositccurl !== "") {
echo '
<br><input type="radio" value="cc" name="dtype"> Credit Card';
if ($depositccper !== "" || $depositccfee !== "") {
echo ' <small>(cost: ' . $depositccper . '% + ' . $currencytype . '' . $currency . '' . $depositccfee . ')</small>';
}
}
if ($depositpaypal !== "") {
echo '
<br><input type="radio" value="paypal" name="dtype"> <a href="https://www.paypal.com/affil/pal=' . $ppemailaddr . '" target="_blank">PayPal</a>';
if ($depositppper !== "" || $depositppfee !== "") {
echo ' <small>(cost: ' . $depositppper . '% + ' . $currencytype . '' . $currency . '' . $depositppfee . ')</small>';
}
}
if ($depositmail !== "") {
echo '
<br><input type="radio" value="mail" name="dtype"> Regular Mail';
if ($depositmlfee !== "") {
echo ' <small>(cost: ' . $currencytype . '' . $currency. '' . $depositmlfee . ')</small>';
}
}
if ($depositother !== "") {
echo '
<p><a href="' . $siteurl . '/payment.php">Click here for other payment options...</a>';
}
?>
<p><input type="submit" value="Continue" name="submit">
</form>