├── .gitattributes ├── README.md ├── application ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── _notes │ │ └── dwsync.xml │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── _notes │ │ └── dwsync.xml │ ├── accountant.php │ ├── admin.php │ ├── doctor.php │ ├── index.html │ ├── install.php │ ├── laboratorist.php │ ├── login.php │ ├── multilanguage.php │ ├── nurse.php │ ├── patient.php │ └── pharmacist.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── multi_language_helper.php ├── hooks │ └── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ ├── Paypal.php │ ├── _notes │ │ └── dwsync.xml │ └── index.html ├── logs │ └── index.html ├── models │ ├── _notes │ │ └── dwsync.xml │ ├── crud_model.php │ ├── email_model.php │ ├── index.html │ └── language.php ├── third_party │ └── index.html └── views │ ├── .htaccess │ ├── _notes │ └── dwsync.xml │ ├── accountant │ ├── dashboard.php │ ├── manage_invoice.php │ ├── manage_profile.php │ ├── navigation.php │ ├── payment_history.php │ ├── take_cash_payment.php │ ├── view_invoice.php │ └── view_payment.php │ ├── admin │ ├── backup_restore.php │ ├── dashboard.php │ ├── manage_accountant.php │ ├── manage_department.php │ ├── manage_doctor.php │ ├── manage_laboratorist.php │ ├── manage_language.php │ ├── manage_noticeboard.php │ ├── manage_nurse.php │ ├── manage_patient.php │ ├── manage_pharmacist.php │ ├── manage_profile.php │ ├── navigation.php │ ├── system_settings.php │ ├── view_appointment.php │ ├── view_bed_status.php │ ├── view_blood_bank.php │ ├── view_log.php │ ├── view_medicine.php │ ├── view_payment.php │ └── view_report.php │ ├── doctor │ ├── dashboard.php │ ├── manage_appointment.php │ ├── manage_bed_allotment.php │ ├── manage_patient.php │ ├── manage_prescription.php │ ├── manage_profile.php │ ├── manage_report.php │ ├── navigation.php │ └── view_blood_bank.php │ ├── footer.php │ ├── four_zero_four.php │ ├── header.php │ ├── includes.php │ ├── index.html │ ├── index.php │ ├── install │ ├── index.html │ └── index.php │ ├── laboratorist │ ├── dashboard.php │ ├── manage_blood_bank.php │ ├── manage_blood_donor.php │ ├── manage_prescription.php │ ├── manage_profile.php │ ├── navigation.php │ └── view_blood_bank.php │ ├── login.php │ ├── nurse │ ├── dashboard.php │ ├── manage_bed.php │ ├── manage_bed_allotment.php │ ├── manage_blood_bank.php │ ├── manage_blood_donor.php │ ├── manage_patient.php │ ├── manage_profile.php │ ├── manage_report.php │ └── navigation.php │ ├── page_info.php │ ├── patient │ ├── dashboard.php │ ├── manage_patient.php │ ├── manage_profile.php │ ├── navigation.php │ ├── payment_history.php │ ├── view_admit_history.php │ ├── view_appointment.php │ ├── view_blood_bank.php │ ├── view_doctor.php │ ├── view_invoice.php │ ├── view_operation_history.php │ └── view_prescription.php │ └── pharmacist │ ├── dashboard.php │ ├── manage_medicine.php │ ├── manage_medicine_category.php │ ├── manage_prescription.php │ ├── manage_profile.php │ └── navigation.php ├── database └── hms.sql ├── index.php ├── readme.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php ├── template ├── css │ ├── Copy of bayanno.css │ ├── EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff │ ├── MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff │ ├── _notes │ │ └── dwsync.xml │ ├── bayanno.css │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff │ ├── dosis-light.ttf │ ├── dosis-regular.ttf │ ├── font.css │ ├── fontawesome-webfont-ie-fix.eot │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── klavika.otf │ └── segoe.ttf ├── images │ ├── Thumbs.db │ ├── bg.png │ ├── blue.png │ ├── blue@2x.png │ ├── glyphicons-halflings-white.html │ ├── glyphicons-halflings.html │ ├── ie-spacer.gif │ └── loading.gif ├── install │ ├── images │ │ ├── checked.png │ │ └── error.png │ ├── install.css │ ├── jquery.min.js │ └── sliding.form.js └── js │ ├── _notes │ └── dwsync.xml │ ├── bayanno.js │ ├── excanvas.js │ └── html5shiv.js └── uploads ├── Thumbs.db ├── logo.png ├── logo1.png └── online-gaming-addiction-internet-computer-addiction-ipredator-internet-addiction-help.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/README.md -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/_notes/dwsync.xml -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/_notes/dwsync.xml -------------------------------------------------------------------------------- /application/controllers/accountant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/accountant.php -------------------------------------------------------------------------------- /application/controllers/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/admin.php -------------------------------------------------------------------------------- /application/controllers/doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/doctor.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/install.php -------------------------------------------------------------------------------- /application/controllers/laboratorist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/laboratorist.php -------------------------------------------------------------------------------- /application/controllers/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/login.php -------------------------------------------------------------------------------- /application/controllers/multilanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/multilanguage.php -------------------------------------------------------------------------------- /application/controllers/nurse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/nurse.php -------------------------------------------------------------------------------- /application/controllers/patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/patient.php -------------------------------------------------------------------------------- /application/controllers/pharmacist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/controllers/pharmacist.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/multi_language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/helpers/multi_language_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/libraries/Paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/libraries/Paypal.php -------------------------------------------------------------------------------- /application/libraries/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/libraries/_notes/dwsync.xml -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/models/_notes/dwsync.xml -------------------------------------------------------------------------------- /application/models/crud_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/models/crud_model.php -------------------------------------------------------------------------------- /application/models/email_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/models/email_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/models/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/models/language.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/views/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/_notes/dwsync.xml -------------------------------------------------------------------------------- /application/views/accountant/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/dashboard.php -------------------------------------------------------------------------------- /application/views/accountant/manage_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/manage_invoice.php -------------------------------------------------------------------------------- /application/views/accountant/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/manage_profile.php -------------------------------------------------------------------------------- /application/views/accountant/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/navigation.php -------------------------------------------------------------------------------- /application/views/accountant/payment_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/payment_history.php -------------------------------------------------------------------------------- /application/views/accountant/take_cash_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/take_cash_payment.php -------------------------------------------------------------------------------- /application/views/accountant/view_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/view_invoice.php -------------------------------------------------------------------------------- /application/views/accountant/view_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/accountant/view_payment.php -------------------------------------------------------------------------------- /application/views/admin/backup_restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/backup_restore.php -------------------------------------------------------------------------------- /application/views/admin/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/dashboard.php -------------------------------------------------------------------------------- /application/views/admin/manage_accountant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_accountant.php -------------------------------------------------------------------------------- /application/views/admin/manage_department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_department.php -------------------------------------------------------------------------------- /application/views/admin/manage_doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_doctor.php -------------------------------------------------------------------------------- /application/views/admin/manage_laboratorist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_laboratorist.php -------------------------------------------------------------------------------- /application/views/admin/manage_language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_language.php -------------------------------------------------------------------------------- /application/views/admin/manage_noticeboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_noticeboard.php -------------------------------------------------------------------------------- /application/views/admin/manage_nurse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_nurse.php -------------------------------------------------------------------------------- /application/views/admin/manage_patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_patient.php -------------------------------------------------------------------------------- /application/views/admin/manage_pharmacist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_pharmacist.php -------------------------------------------------------------------------------- /application/views/admin/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/manage_profile.php -------------------------------------------------------------------------------- /application/views/admin/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/navigation.php -------------------------------------------------------------------------------- /application/views/admin/system_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/system_settings.php -------------------------------------------------------------------------------- /application/views/admin/view_appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_appointment.php -------------------------------------------------------------------------------- /application/views/admin/view_bed_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_bed_status.php -------------------------------------------------------------------------------- /application/views/admin/view_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_blood_bank.php -------------------------------------------------------------------------------- /application/views/admin/view_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_log.php -------------------------------------------------------------------------------- /application/views/admin/view_medicine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_medicine.php -------------------------------------------------------------------------------- /application/views/admin/view_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_payment.php -------------------------------------------------------------------------------- /application/views/admin/view_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/admin/view_report.php -------------------------------------------------------------------------------- /application/views/doctor/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/dashboard.php -------------------------------------------------------------------------------- /application/views/doctor/manage_appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_appointment.php -------------------------------------------------------------------------------- /application/views/doctor/manage_bed_allotment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_bed_allotment.php -------------------------------------------------------------------------------- /application/views/doctor/manage_patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_patient.php -------------------------------------------------------------------------------- /application/views/doctor/manage_prescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_prescription.php -------------------------------------------------------------------------------- /application/views/doctor/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_profile.php -------------------------------------------------------------------------------- /application/views/doctor/manage_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/manage_report.php -------------------------------------------------------------------------------- /application/views/doctor/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/navigation.php -------------------------------------------------------------------------------- /application/views/doctor/view_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/doctor/view_blood_bank.php -------------------------------------------------------------------------------- /application/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/footer.php -------------------------------------------------------------------------------- /application/views/four_zero_four.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/four_zero_four.php -------------------------------------------------------------------------------- /application/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/header.php -------------------------------------------------------------------------------- /application/views/includes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/includes.php -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/index.php -------------------------------------------------------------------------------- /application/views/install/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/install/index.html -------------------------------------------------------------------------------- /application/views/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/install/index.php -------------------------------------------------------------------------------- /application/views/laboratorist/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/dashboard.php -------------------------------------------------------------------------------- /application/views/laboratorist/manage_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/manage_blood_bank.php -------------------------------------------------------------------------------- /application/views/laboratorist/manage_blood_donor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/manage_blood_donor.php -------------------------------------------------------------------------------- /application/views/laboratorist/manage_prescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/manage_prescription.php -------------------------------------------------------------------------------- /application/views/laboratorist/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/manage_profile.php -------------------------------------------------------------------------------- /application/views/laboratorist/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/navigation.php -------------------------------------------------------------------------------- /application/views/laboratorist/view_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/laboratorist/view_blood_bank.php -------------------------------------------------------------------------------- /application/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/login.php -------------------------------------------------------------------------------- /application/views/nurse/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/dashboard.php -------------------------------------------------------------------------------- /application/views/nurse/manage_bed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_bed.php -------------------------------------------------------------------------------- /application/views/nurse/manage_bed_allotment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_bed_allotment.php -------------------------------------------------------------------------------- /application/views/nurse/manage_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_blood_bank.php -------------------------------------------------------------------------------- /application/views/nurse/manage_blood_donor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_blood_donor.php -------------------------------------------------------------------------------- /application/views/nurse/manage_patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_patient.php -------------------------------------------------------------------------------- /application/views/nurse/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_profile.php -------------------------------------------------------------------------------- /application/views/nurse/manage_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/manage_report.php -------------------------------------------------------------------------------- /application/views/nurse/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/nurse/navigation.php -------------------------------------------------------------------------------- /application/views/page_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/page_info.php -------------------------------------------------------------------------------- /application/views/patient/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/dashboard.php -------------------------------------------------------------------------------- /application/views/patient/manage_patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/manage_patient.php -------------------------------------------------------------------------------- /application/views/patient/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/manage_profile.php -------------------------------------------------------------------------------- /application/views/patient/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/navigation.php -------------------------------------------------------------------------------- /application/views/patient/payment_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/payment_history.php -------------------------------------------------------------------------------- /application/views/patient/view_admit_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_admit_history.php -------------------------------------------------------------------------------- /application/views/patient/view_appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_appointment.php -------------------------------------------------------------------------------- /application/views/patient/view_blood_bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_blood_bank.php -------------------------------------------------------------------------------- /application/views/patient/view_doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_doctor.php -------------------------------------------------------------------------------- /application/views/patient/view_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_invoice.php -------------------------------------------------------------------------------- /application/views/patient/view_operation_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_operation_history.php -------------------------------------------------------------------------------- /application/views/patient/view_prescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/patient/view_prescription.php -------------------------------------------------------------------------------- /application/views/pharmacist/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/dashboard.php -------------------------------------------------------------------------------- /application/views/pharmacist/manage_medicine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/manage_medicine.php -------------------------------------------------------------------------------- /application/views/pharmacist/manage_medicine_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/manage_medicine_category.php -------------------------------------------------------------------------------- /application/views/pharmacist/manage_prescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/manage_prescription.php -------------------------------------------------------------------------------- /application/views/pharmacist/manage_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/manage_profile.php -------------------------------------------------------------------------------- /application/views/pharmacist/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/application/views/pharmacist/navigation.php -------------------------------------------------------------------------------- /database/hms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/database/hms.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/index.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/readme.txt -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /template/css/Copy of bayanno.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/Copy of bayanno.css -------------------------------------------------------------------------------- /template/css/EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff -------------------------------------------------------------------------------- /template/css/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff -------------------------------------------------------------------------------- /template/css/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/_notes/dwsync.xml -------------------------------------------------------------------------------- /template/css/bayanno.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/bayanno.css -------------------------------------------------------------------------------- /template/css/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff -------------------------------------------------------------------------------- /template/css/dosis-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/dosis-light.ttf -------------------------------------------------------------------------------- /template/css/dosis-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/dosis-regular.ttf -------------------------------------------------------------------------------- /template/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/font.css -------------------------------------------------------------------------------- /template/css/fontawesome-webfont-ie-fix.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/fontawesome-webfont-ie-fix.eot -------------------------------------------------------------------------------- /template/css/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/fontawesome-webfont.eot -------------------------------------------------------------------------------- /template/css/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template/css/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/fontawesome-webfont.woff -------------------------------------------------------------------------------- /template/css/klavika.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/klavika.otf -------------------------------------------------------------------------------- /template/css/segoe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/css/segoe.ttf -------------------------------------------------------------------------------- /template/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/Thumbs.db -------------------------------------------------------------------------------- /template/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/bg.png -------------------------------------------------------------------------------- /template/images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/blue.png -------------------------------------------------------------------------------- /template/images/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/blue@2x.png -------------------------------------------------------------------------------- /template/images/glyphicons-halflings-white.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/glyphicons-halflings-white.html -------------------------------------------------------------------------------- /template/images/glyphicons-halflings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/glyphicons-halflings.html -------------------------------------------------------------------------------- /template/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/ie-spacer.gif -------------------------------------------------------------------------------- /template/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/images/loading.gif -------------------------------------------------------------------------------- /template/install/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/install/images/checked.png -------------------------------------------------------------------------------- /template/install/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/install/images/error.png -------------------------------------------------------------------------------- /template/install/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/install/install.css -------------------------------------------------------------------------------- /template/install/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/install/jquery.min.js -------------------------------------------------------------------------------- /template/install/sliding.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/install/sliding.form.js -------------------------------------------------------------------------------- /template/js/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/js/_notes/dwsync.xml -------------------------------------------------------------------------------- /template/js/bayanno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/js/bayanno.js -------------------------------------------------------------------------------- /template/js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/js/excanvas.js -------------------------------------------------------------------------------- /template/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/template/js/html5shiv.js -------------------------------------------------------------------------------- /uploads/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/uploads/Thumbs.db -------------------------------------------------------------------------------- /uploads/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/uploads/logo.png -------------------------------------------------------------------------------- /uploads/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/uploads/logo1.png -------------------------------------------------------------------------------- /uploads/online-gaming-addiction-internet-computer-addiction-ipredator-internet-addiction-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsokpo/Hospital-management-system/HEAD/uploads/online-gaming-addiction-internet-computer-addiction-ipredator-internet-addiction-help.png --------------------------------------------------------------------------------