Guest User

Untitled

a guest
Dec 13th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 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. $iRate = intval($_POST['interestRate']);
  12. $trm = intval(@$_POST['term']);
  13. $interestDuration = intval(@$_POST['duration']);
  14. $compundInterestCheck = intval(@$_POST['compoundInterest']);
  15. $reinvested = intval(@$_POST['ReInvested']);
  16. $PaySchedual = (@$_POST['paymentSchedual']);
  17.  
  18.  
  19. /*Declarations*/
  20.  
  21.  
  22.  
  23. echo "$initialInvestment" + "$trm";
  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 id="interestRate" type="text"/><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>
Add Comment
Please, Sign In to add comment