Jump to content
MakeWebGames

Jeff

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by Jeff

  1. Re: [uPDATED!] Basic ajax is easy Thanks Floydian, very useful!
  2. Re: Need Help I Have A Prob   Should be global $db,$ir,$c,$userid,$h;   I havn't used mccodes in a long time but im sure its meant to be global $db not global db   <?php include "globals.php"; print "<h3>Cyber Bank</h3>"; if($ir['cybermoney']>-1) { switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>9999999) { print "Congratulations, you bought a bank account for \$10,000,000! [url='cyberbank.php']Start using my account[/url]"; $db->query("UPDATE users SET money=money-10000000,cybermoney=0 WHERE userid=$userid"); } else { print "You do not have enough money to open an account. [url='explore.php']Back to town...[/url]"; } } else { print "Open a bank account today, just \$10,000,000! [url='cyberbank.php?buy']> Yes, sign me up![/url]"; } } function index() { global $db,$ir,$c,$userid,$h; print "\n[b]You currently have \${$ir['cybermoney']} in the bank.[/b] At the end of each day, your bank balance will go up by 7%. <table width='75%' border='2'> <tr> <td width='50%'>[b]Deposit Money[/b] It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$1,500,000.<form action='cyberbank.php?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> [b]Withdraw Money[/b] It will cost you 7.5% of the money you withdraw, rounded up. The maximum fee is \$750,000.<form action='cyberbank.php?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='{$ir['cybermoney']}' /> <input type='submit' value='Withdraw' /></form></td> </tr> </table>"; } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit']=abs((float) $_POST['deposit']); if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $fee=ceil($_POST['deposit']*15/100); if($fee > 1500000) { $fee=1500000; } $gain=$_POST['deposit']-$fee; $ir['cybermoney']+=$gain; $db->query("UPDATE users SET cybermoney=cybermoney+$gain, money=money-{$_POST['deposit']} where userid=$userid"); print "You hand over \${$_POST['deposit']} to be deposited, after the fee is taken (\$$fee), \$$gain is added to your account. [b]You now have \${$ir['cybermoney']} in the Cyber Bank.[/b] [url='cyberbank.php']> Back[/url]"; } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw']=abs((float) $_POST['withdraw']); if($_POST['withdraw'] > $ir['cybermoney']) { print "You do not have enough banked money to withdraw this amount."; } else { $fee=ceil($_POST['withdraw']*75/1000); if($fee > 750000) { $fee=750000; } $gain=$_POST['withdraw']-$fee; $ir['cybermoney']-=$gain; $db->query("UPDATE users SET cybermoney=cybermoney-$gain, money=money+$gain where userid=$userid"); print "You ask to withdraw $gain, the teller hands it over after she takes the bank fees. [b]You now have \${$ir['cybermoney']} in the Cyber Bank.[/b] [url='cyberbank.php']> Back[/url]"; } } $h->endpage(); ?>
  3. Re: Basic Ajax is easy Thanks for that Floydian, i how have it fully working on my site, i see how it works more now so can try out a few more thing now :-)
  4. Re: Basic Ajax is easy OK, i'm having quite a few problems with this and looking for a bit of help or to be pointed in the right direction :wink: First off you should know im not that good with Java Script and am new to AJAX but i have got AJAX working to refresh the user stats when needed so i am learning I've been trying to change the function js_function_1(submission)and ajax_object.open() So that i can use it to reload the map and move the user when clicking a link, currently i and using $_GET with an example of the link being map.php?move=1&x=7&y=0 There are a number of link to move the user in which the 'x' and 'y' only change, 'move' stays as 1 Im not sure if i can add the GET info on to the file im opening with AJAX as done with a normal link as i can't get that to work .... and if that could be done, could the (submission) be changed to contain this info?   Any help at all would be great :-)
  5. Re: Amazon Survival Very good review of the site, not much more to say Iso's done allot of re-coding to improved the lay out and you can see its worked!
×
×
  • Create New...