Server IP : 144.76.124.212 / Your IP : 216.73.216.138 Web Server : LiteSpeed System : Linux l4cp.vnetindia.com 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : rakcha ( 1356) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home5/rakcha/www/user/ |
Upload File : |
<?php session_start(); include("includes/database.php"); $select_query_main = "select * from wallet_payout ORDER BY payout_id ASC"; $run_main = mysqli_query($con,$select_query_main); while ($row_main = mysqli_fetch_array($run_main)) { $payout_id = $row_main['payout_id']; $growth_bonus = $row_main['growth_bonus']; $total_amount = $row_main['total_amount']; $total_amount_1 = $total_amount-$growth_bonus; mysqli_query($con,"update wallet_payout set total_amount='$total_amount_1', growth_bonus='0' where payout_id='$payout_id'"); } ?>