Web Analytics Made Easy -
StatCounter Future Value Calculator (need) - CodingForum

Announcement

Collapse
No announcement yet.

Future Value Calculator (need)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Future Value Calculator (need)

    HI-
    I'd like to add a calcultor just like this


    to my website.

    Can't find the code for this one. (Found similar but more complicated.. this one does just what I want)

    Please let me know if you have seen one where I can lift the code

    or

    can someone out there make one for me? Let's discuss.
    Thanks
    Val
    [email protected]

  • #2
    if you want on just like that why don'r you just cut and paste the code?

    Comment


    • #3
      The calculation is done on the server-side not on the client-side, so you won't see the code.

      If you just know the formula, it would also be as easy doing it in javascript.
      Glenn
      vBulletin Mods That Rock!

      Comment


      • #4
        P=prompt('Current Price',0);
        R=prompt('Appreciation Rate %',0);
        L=prompt('Loan Length',0);
        A=1*1+R/100;
        T=P*Math.pow(A,L);
        alert(T);
        Having said that, I've probably told you more than I know.

        Comment

        Working...
        X