/* 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 hr_notes order by note_id"); HR Notes Image

These HR notes appear on the right-hand frame of the main menu, when an employee is logged into the system.

You may either remove an existing HR note (top table) or add another HR note (bottom table).

while(cursor.next()) {}
Note ID
(Select to Delete)
Note
write(cursor.note_ID); write(cursor.note);


Add HR Note
Note:

Return to Main Menu