• February 15, 2023
    <!DOCTYPE html>
    <html>
    <head>
        <title>Personalized Financial Planning Software</title>
    </head>
    <body>
        <h1>Calculate Your Net Worth</h1>
        <form method="post">
            <label for="checking">Checking Account Balance:</label>
            <input type="number" id="checking" name="checking" required><br><br>
            
            <label for="savings">Savings Account Balance:</label>
            <input type="number" id="savings" name="savings" required><br><br>
            
            <label for="investment">Investment Account Balance:</label>
            <input type="number" id="investment" name="investment" required><br><br>
            
            <label for="property">Market Value of Property:</label>
            <input type="number" id="property" name="property" required><br><br>
            
            <label for="mortgage">Mortgage Balance:</label>
            <input type="number" id="mortgage" name="mortgage" required><br><br>
            
            <label for="credit_card">Credit Card Balance:</label>
            <input type="number" id="credit_card" name="credit_card" required><br><br>
            
            <label for="student_loan">Student Loan Balance:</label>
            <input type="number" id="student_loan" name="student_loan" required><br><br>
            
            <input type="submit" name="submit" value="Calculate">
        </form>
        
        <?php
        if (isset($_POST['submit'])) {
            $assets = array(
                $_POST['checking'], //checking account balance
                $_POST['savings'], //savings account balance
                $_POST['investment'], //investment account balance
                $_POST['property'] //market value of property
            );
    
            $liabilities = array(
                $_POST['mortgage'], //mortgage balance
                $_POST['credit_card'], //credit card balance
                $_POST['student_loan'] //student loan balance
            );
    
            $net_worth = array_sum($assets) - array_sum($liabilities);
    
            echo "<p>Your net worth is: $" . $net_worth . "</p>";
        }
        ?>
        
    </body>
    </html>
    


เวอไนน์ไอคอร์ส

ประหยัดเวลากว่า 100 เท่า!






เวอไนน์เว็บไซต์⚡️
สร้างเว็บไซต์ ดูแลเว็บไซต์

Categories


Uncategorized