/* Check to make sure we are connected to the database before ... allowing access to the home page. If not connected, go connect and initialize; otherwise, welcome the user.\ */ if(!database.connected()) redirect("init.htm"); cursor = database.cursor("select * from benefit_plan order by plan_id"); Benefit Plans

Below, you may either delete a benefit plan (top table) or add a benefit plan (bottom table).

while(cursor.next()) {}
Plan ID
(Select to Delete)
Plan DescriptionPlan Cost
write(cursor.plan_ID); write(cursor.plan_descp); write("$" + cursor.plan_cost);


Add Benefit Plan
Plan Description:
Plan Cost:

Return to Main Menu