Patient Record Keeping with Decision Support System is designed in order to provide the management of the hospital an opportunity to process patient records with accuracy, accessibility, timely and efficiently. Assurance of safekeeping of every record likewise can be achieved…
HTML Hyperlinks
This lesson will guide us on how to create hyperlinks in HTML Hyperlinks or also known as links is a text or image that can send or move you to a different webpage by clicking the hyperlink or link. You…
HTML Comments
This lesson is about HTML Comments, how to add comments to your webpage and the importance of comments to your site Comments in HTML First let’s define what is a comment? A comment is a piece or string of code…
HTML Attribute
HTML Attribute In this lesson, we’re going to learn about HTML attributes An attribute is the one that provides information about HTML elements. HTML attributes are always found in the opening tags. It starts after the keyword of your opening…
File Management System in PHP and MySQL
File management system is a file system that is used to organize and keep track of files. Users need not browse through network folder but instead are given instant result, and are provided a system where files can be accessed…
Computer-Assisted Instruction using Moodle
Computer-Assisted Instruction using Moodle Moodle allows educators to create online courses, which students can access as a virtual classroom. A typically Moodle home page will include a list of participants (including the teacher and students) and a calendar with a…
Data Types in Visual Basic 6.0
Data type is a storage format that can contain range of values. A data type in simplest form is to determine what kind of data it can store. Just like every other programming languages, Visual Basic 6 has its own…
Science Learning Games using Visual Basic 6
The Science Learning Games was developed to enhance the interest of students in their science subject and to give science teacher/s another method of teaching. The researchers used Waterfall Model in developing the Science game. In this methodology, the software…
HTML Page Structure
HTML Page Structure This lesson will discuss about the basic structure of a HTML document. Below is an example of simple HTML page. <html> <head> <title>This is my HTML document</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p>…
Java reserved words
In computer programming, reserved words are those words that are already used by the syntax of that programming language; it can’t be used as identifiers (e.g., name of variable, function name, methods and classes). Java has its own reserved words. The…