Poornima Nayak,
Mohammad Ziaullah,
Tabasum Guledgudd,
- Student, Limited Departmental Examination, SECAB Institute of Engineering and Technology, Vijayapura, Karnataka, India
- Assistant Professor, Electronics and Communication Engineering, SECAB Institute of Engineering and Technology, Vijayapura, Karnataka, India
- Head and Assistant Professor, Electronics and Communication Engineering, SECAB Institute of Engineering and Technology, Vijayapura, Karnataka, India
Abstract
The medical appointment system is a web application that uses PHP, JavaScript, and CSS to improve the efficiency of booking medical appointments. It features two interfaces: an admin side where patients and doctors manage their appointments and a user side where they may handle an appointment and to view records, and manage their medicines. The web platform that the system makes available provides a convenient online experience from any internet-enabled device, facilitating appointment scheduling, reducing errors, and lowering administrative workload. The shortcomings of traditional scheduling methods are addressed by this system, which increases accessibility and simplifies operations for healthcare management. The doctor appointment system tackles two main concerns with traditional appointment booking methods: lengthy wait times and human scheduling challenges. Using web technologies to create an intuitive interface for user and administrative interactions, this system seeks to speed up the appointment process. Physician and patient records are managed by the admin side of the system, while medication management, appointment scheduling, and treatment histories are accessible through the user side. This approach enhances both customer satisfaction and operational efficiency.
Keywords: JavaScript, medical appointment, admin
[This article belongs to International Journal of Computer Science Languages ]
Poornima Nayak, Mohammad Ziaullah, Tabasum Guledgudd. Care Sched: Doctor and Patient Appointment Management. International Journal of Computer Science Languages. 2025; 03(01):1-12.
Poornima Nayak, Mohammad Ziaullah, Tabasum Guledgudd. Care Sched: Doctor and Patient Appointment Management. International Journal of Computer Science Languages. 2025; 03(01):1-12. Available from: https://journals.stmjournals.com/ijcsl/article=2025/view=0
References
- Khan MA. Healthcare management system. J Health Informatics. 2021; 12 (2): 55–65.
- Reddy RG. Review of healthcare management systems. Int J Med Informatics. 2022; 89: 1–11.
- Smith J. Appointment scheduling systems in healthcare. Health IT Journal. 2020; 15 (4): 85–95.
- Johnson AC. Optimizing appointment scheduling in healthcare. Healthcare Technol Rev. 2023; 17: 32–45.
- Patel PK. Telemedicine: current trends and future directions. J Telemed Telecare. 2023; 26 (1): 1–10.
- Morris SR. Advances in telemedicine. Telehealth J. 2022; 19 (2): 115–123.
- Smith DB. AI applications in healthcare. Artif Intell Rev. 2022; 31: 225–245.
- Zhang KL. Artificial intelligence in medical diagnosis. J AI Res. 2021; 45 (3): 189–199.
- Lee HT. Mobile health applications: a review. J Mobile Technol Med. 2023; 10 (1): 12–20.
- Davis EO. Impact of mobile apps on healthcare. Healthcare Innov. 2022; 22: 67–80.

International Journal of Computer Science Languages
| Volume | 03 |
| Issue | 01 |
| Received | 22/11/2024 |
| Accepted | 14/01/2025 |
| Published | 10/03/2025 |
| Publication Time | 108 Days |
async function fetchCitationCount(doi) {
let apiUrl = `https://api.crossref.org/works/${doi}`;
try {
let response = await fetch(apiUrl);
let data = await response.json();
let citationCount = data.message[“is-referenced-by-count”];
document.getElementById(“citation-count”).innerText = `Citations: ${citationCount}`;
} catch (error) {
console.error(“Error fetching citation count:”, error);
document.getElementById(“citation-count”).innerText = “Citations: Data unavailable”;
}
}
fetchCitationCount(“10.37591/IJCSL.v03i01.0”);