Please Enter Amount

"); require('footer_inc.php'); exit; } elseif($amt < $depmin){ echo("

Minimum Amount to Deposit: $$depmin

"); require('footer_inc.php'); exit; } else { if($dopsel == 0){ $tamt = $amt+$dopfld; echo("

 

Total: $amt + $dopfld = $tamt

"); } else { $amt1 = sprintf("%6.2f", floor($amt*$dopfld)/100); $tamt = $amt + $amt1; echo("

 

Total: $amt + %$dopfld = $tamt

"); } $res = mysql_query("insert into deposit_ids (userid, cutadminfee, depositcash) values ('$usrid','$amt1','$tamt')"); $oid = mysql_insert_id(); if(file_exists("./pay/2checkout.php") and file_exists("./pay/2checkout_return.php")){ $checkoutallow = mysql_result(mysql_query("select checkoutallow from modules"), 0); $checkoutacid = mysql_result(mysql_query("select checkoutacid from modules"), 0); if($checkoutallow == 1){ echo("


"); include("./pay/2checkout.php"); echo("
"); } } if(file_exists("./pay/paypal.php") and file_exists("./pay/paypal_return.php")){ $paypalallow = mysql_result(mysql_query("select paypalallow from modules"), 0); $paypalac = mysql_result(mysql_query("select paypalac from modules"), 0); if($paypalallow == 1){ echo("


"); include("./pay/paypal.php"); echo("
"); } } if(file_exists("./pay/stormpay.php") and file_exists("./pay/stormpay_return.php")){ $stormpayallow = mysql_result(mysql_query("select stormpayallow from modules"), 0); $stormpayac = mysql_result(mysql_query("select stormpayac from modules"), 0); if($stormpayallow == 1){ echo("


"); include("./pay/stormpay.php"); echo("
"); } } if(file_exists("./pay/egold.php") and file_exists("./pay/egold_return.php")){ $egoldallow = mysql_result(mysql_query("select egoldallow from modules"), 0); $egoldac = mysql_result(mysql_query("select egoldac from modules"), 0); if($egoldallow == 1){ echo("


"); include("./pay/egold.php"); echo("
"); } } if(file_exists("./pay/intgold.php") and file_exists("./pay/intgold_return.php")){ $intgoldallow = mysql_result(mysql_query("select intgoldallow from modules"), 0); $intgoldac = mysql_result(mysql_query("select intgoldac from modules"), 0); if($intgoldallow == 1){ echo("


"); include("./pay/intgold.php"); echo("
"); } } if(file_exists("./pay/moneybookers.php") and file_exists("./pay/moneybookers_return.php")){ $moneybookersallow = mysql_result(mysql_query("select moneybookersallow from modules"), 0); $moneybookersac = mysql_result(mysql_query("select moneybookersac from modules"), 0); if($moneybookersallow == 1){ echo("


"); include("./pay/moneybookers.php"); echo("
"); } } if(file_exists("./pay/sfipay.php") and file_exists("./pay/sfipay_return.php")){ $sfipayallow = mysql_result(mysql_query("select sfipayallow from modules"), 0); $sfipayac = mysql_result(mysql_query("select sfipayac from modules"), 0); if($sfipayallow == 1){ echo("


"); include("./pay/sfipay.php"); echo("
"); } } if(file_exists("./pay/payswiss.php") and file_exists("./pay/payswiss_return.php")){ $payswissallow = mysql_result(mysql_query("select payswissallow from modules"), 0); $payswissac = mysql_result(mysql_query("select payswissac from modules"), 0); if($payswissallow == 1){ echo("


"); include("./pay/payswiss.php"); echo("
"); } } $res = mysql_query("select * from pay_code order by id asc"); for ($i = 0; $i < mysql_num_rows($res); $i++){ $id = mysql_result($res, $i, "id"); $pcode = mysql_result($res, $i, "pcode"); $txt = str_replace('[amount]', $tamt, $pcode); $txt1 = str_replace('[id]', $usrid, $txt); $txt2 = str_replace('[name]', $name, $txt1); $txt3 = str_replace('[email]', $email, $txt2); echo("


$txt3
"); } require('footer_inc.php'); exit; } } echo("
Deposit Cash
"); if($dopsel == 0){ echo("

$$dopfld"."- is charged by site admin"); } else { echo("

$dopfld"."% is charged by site admin"); } echo("

Enter Amount: $

"); require('footer_inc.php'); exit; mysql_close; ?>