Process JSP
Process JSP
Page 1
process.jsp Thursday, 15 May 2025, 9:47 am
58 border-collapse: collapse;
59 margin: 16px 0;
60 }
61 th, td {
62 border: 1px solid #ccc;
63 padding: 8px 12px;
64 text-align: center;
65 }
66 th { background: #eee; }
67 </style>
68 </head>
69 <body>
70 <div class="result-container">
71 <h2>BMI CALCULATION RESULT</h2>
72 <h3>Inserted Information:</h3>
73 <ul>
74 <li><b>Name:</b> <%= name %></li>
75 <li><b>Age:</b> <%= age %></li>
76 <li><b>Height:</b> <%= height %> meters</li>
77 <li><b>Weight:</b> <%= weight %> kg</li>
78 </ul>
79 <h3>BMI Value and Status:</h3>
80 <table>
81 <tr>
82 <th>BMI</th>
83 <th>Status</th>
84 </tr>
85 <tr style="background:<%= color %>;">
86 <td><b><%= String.format("%.2f", bmi) %></b></td>
87 <td><b><%= status %></b></td>
88 </tr>
89 </table>
90 <h3>Advice:</h3>
91 <p><%= advice %></p>
92 <hr>
93 </div>
94 </body>
95 </html>
96
Page 2