Guest User

Untitled

a guest
Dec 13th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.62 KB | None | 0 0
  1. <?php
  2. /*
  3. Script: TheHackOps
  4. Description: I dont even fucking know but some dude asked me to build this for him
  5. Name:HYIP Calculator (What ever the fuck that is)
  6. */
  7.  
  8. /*Declarations*/
  9. $initialInvestment = intval(@$_POST['investAmmount']);
  10. $investDate = intval(@$_POST['investDate']);
  11.  
  12. $iRate = intval(@$_POST['interestRate']);
  13.  
  14. $trm = intval(@$_POST['term']);
  15. $interestDuration = intval(@$_POST['duration']);
  16. $compundInterestCheck = intval(@$_POST['compoundInterest']);
  17. $reinvested = intval(@$_POST['ReInvested']);
  18. $PaySchedual = (@$_POST['paymentSchedual']);
  19.  
  20. $Result = $initialInvestment * $iRate ^ $interestDuration;
  21. /*Declarations*/
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. ?>
  30. <!DOCTYPE HTML>
  31. <head>
  32. <title>HYIP Calcumalatormachinethingi</title>
  33.  
  34. </head>
  35. <form name="investmentForm" action="hyip.php" method="POST">
  36.  
  37. Investment Amount:$<input type="text" name="investAmmount" value="0.00"/>USD<br>  
  38. Starting Date:(DD/MM/YY)<input id="investDate" type="text"/><br>
  39. Interest Rate:<input name="interestRate" type="text" value="0.00"/><br>
  40. Term:  <input id="term" type="text"/><br>
  41. Interest Duration: <select name="duration"><option value="1">Day</option><option value="5">Week(5 Days)</option><option value="7">Week(7 Days)</option><option value=28">Month</option></select><br>
  42. Compound Interest: <input type="checkbox" name="compoundInterest" value="Compounding Interest"/><br>
  43. Percent Profit Re-Invested:  <input type="text" name="ReInvested" value="0"/>%<br>
  44. View Payment Schedule:<input type="checkbox" name="paymentSchedual" value="View Payment Schedual"/><br>
  45. <input type="Submit" value="Submit"/>
  46. </form>
  47.  
  48. Result:<?php echo $Result;?>
Add Comment
Please, Sign In to add comment