├── Database └── DemoSMS.sql ├── LICENSE ├── Output ├── Admin-View.png ├── Main-Page.png ├── Parent-View.png ├── Teacher-View.png └── student-view.png ├── README.md └── [Source Code] School Management System ├── Chart.js-master ├── CONTRIBUTING.md ├── LICENSE.md ├── MAINTAINING.md ├── README.md ├── composer.json ├── config.jshintrc ├── docs │ ├── 00-Getting-Started.md │ ├── 01-Chart-Configuration.md │ ├── 02-Scales.md │ ├── 03-Line-Chart.md │ ├── 04-Bar-Chart.md │ ├── 05-Radar-Chart.md │ ├── 06-Polar-Area-Chart.md │ ├── 07-Pie-Doughnut-Chart.md │ ├── 08-Bubble-Chart.md │ ├── 09-Advanced.md │ └── 10-Notes.md ├── gulpfile.js ├── karma.conf.ci.js ├── karma.conf.js ├── karma.coverage.conf.js ├── package.json ├── samples │ ├── animation │ │ └── progress-bar.html │ ├── bar │ │ ├── bar-horizontal.html │ │ ├── bar-multi-axis.html │ │ ├── bar-stacked.html │ │ └── bar.html │ ├── bubble.html │ ├── combo-bar-line.html │ ├── data_labelling.html │ ├── doughnut.html │ ├── legend │ │ ├── pointstyle.html │ │ └── positions.html │ ├── line │ │ ├── different-point-sizes.html │ │ ├── interpolation-modes.html │ │ ├── line-multi-axis.html │ │ ├── line-skip-points.html │ │ ├── line-stacked-area.html │ │ ├── line-stepped.html │ │ ├── line-styles.html │ │ ├── line.html │ │ └── point-styles.html │ ├── pie.html │ ├── polar-area.html │ ├── radar │ │ ├── radar-skip-points.html │ │ └── radar.html │ ├── scales │ │ ├── display-settings.html │ │ ├── filtering-labels.html │ │ ├── gridlines.html │ │ ├── line-non-numeric-y.html │ │ ├── linear │ │ │ ├── min-max-settings.html │ │ │ ├── step-size.html │ │ │ └── suggested-min-max-settings.html │ │ ├── logarithmic │ │ │ ├── line-logarithmic.html │ │ │ └── scatter-logX.html │ │ ├── multiline-labels.html │ │ └── time │ │ │ ├── combo-time-scale.html │ │ │ ├── line-time-point-data.html │ │ │ └── line-time-scale.html │ ├── scatter │ │ ├── scatter-multi-axis.html │ │ └── scatter.html │ ├── tooltips │ │ ├── dataPoints-customTooltips.html │ │ ├── interaction-modes.html │ │ ├── line-customTooltips.html │ │ ├── pie-customTooltips.html │ │ ├── position-modes.html │ │ └── tooltip-callbacks.html │ └── utils.js ├── scripts │ └── release.sh ├── src │ ├── chart.js │ ├── charts │ │ ├── Chart.Bar.js │ │ ├── Chart.Bubble.js │ │ ├── Chart.Doughnut.js │ │ ├── Chart.Line.js │ │ ├── Chart.PolarArea.js │ │ ├── Chart.Radar.js │ │ └── Chart.Scatter.js │ ├── controllers │ │ ├── controller.bar.js │ │ ├── controller.bubble.js │ │ ├── controller.doughnut.js │ │ ├── controller.line.js │ │ ├── controller.polarArea.js │ │ └── controller.radar.js │ ├── core │ │ ├── core.animation.js │ │ ├── core.canvasHelpers.js │ │ ├── core.controller.js │ │ ├── core.datasetController.js │ │ ├── core.element.js │ │ ├── core.helpers.js │ │ ├── core.interaction.js │ │ ├── core.js │ │ ├── core.layoutService.js │ │ ├── core.legend.js │ │ ├── core.plugin.js │ │ ├── core.scale.js │ │ ├── core.scaleService.js │ │ ├── core.ticks.js │ │ ├── core.title.js │ │ └── core.tooltip.js │ ├── elements │ │ ├── element.arc.js │ │ ├── element.line.js │ │ ├── element.point.js │ │ └── element.rectangle.js │ └── scales │ │ ├── scale.category.js │ │ ├── scale.linear.js │ │ ├── scale.linearbase.js │ │ ├── scale.logarithmic.js │ │ ├── scale.radialLinear.js │ │ └── scale.time.js ├── test │ ├── controller.bar.tests.js │ ├── controller.bubble.tests.js │ ├── controller.doughnut.tests.js │ ├── controller.line.tests.js │ ├── controller.polarArea.tests.js │ ├── controller.radar.tests.js │ ├── core.controller.tests.js │ ├── core.datasetController.tests.js │ ├── core.element.tests.js │ ├── core.helpers.tests.js │ ├── core.interaction.tests.js │ ├── core.layoutService.tests.js │ ├── core.legend.tests.js │ ├── core.plugin.tests.js │ ├── core.scaleService.tests.js │ ├── core.title.tests.js │ ├── core.tooltip.tests.js │ ├── defaultConfig.tests.js │ ├── element.arc.tests.js │ ├── element.line.tests.js │ ├── element.point.tests.js │ ├── element.rectangle.tests.js │ ├── mockContext.js │ ├── scale.category.tests.js │ ├── scale.linear.tests.js │ ├── scale.logarithmic.tests.js │ ├── scale.radialLinear.tests.js │ └── scale.time.tests.js └── thankyou.md ├── Gruntfile.js ├── backup.php ├── bootstrap ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── bower.json ├── build ├── bootstrap-less │ ├── mixins.less │ ├── mixins │ │ ├── alerts.less │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── buttons.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── gradients.less │ │ ├── grid-framework.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── image.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── nav-divider.less │ │ ├── nav-vertical-align.less │ │ ├── opacity.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── progress-bar.less │ │ ├── reset-filter.less │ │ ├── resize.less │ │ ├── responsive-visibility.less │ │ ├── size.less │ │ ├── tab-focus.less │ │ ├── table-row.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ └── variables.less └── less │ ├── 404_500_errors.less │ ├── AdminLTE.less │ ├── alerts.less │ ├── bootstrap-social.less │ ├── boxes.less │ ├── buttons.less │ ├── callout.less │ ├── carousel.less │ ├── control-sidebar.less │ ├── core.less │ ├── direct-chat.less │ ├── dropdown.less │ ├── forms.less │ ├── fullcalendar.less │ ├── header.less │ ├── info-box.less │ ├── invoice.less │ ├── labels.less │ ├── lockscreen.less │ ├── login_and_register.less │ ├── mailbox.less │ ├── miscellaneous.less │ ├── mixins.less │ ├── modal.less │ ├── navs.less │ ├── print.less │ ├── products.less │ ├── profile.less │ ├── progress-bars.less │ ├── select2.less │ ├── sidebar-mini.less │ ├── sidebar.less │ ├── skins │ ├── _all-skins.less │ ├── skin-black-light.less │ ├── skin-black.less │ ├── skin-blue-light.less │ ├── skin-blue.less │ ├── skin-green-light.less │ ├── skin-green.less │ ├── skin-purple-light.less │ ├── skin-purple.less │ ├── skin-red-light.less │ ├── skin-red.less │ ├── skin-yellow-light.less │ └── skin-yellow.less │ ├── small-box.less │ ├── social-widgets.less │ ├── table.less │ ├── timeline.less │ ├── users-list.less │ └── variables.less ├── changelog ├── chart.js ├── composer.json ├── controller ├── config.php └── index.php ├── dist ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ └── skins │ │ ├── _all-skins.css │ │ ├── _all-skins.min.css │ │ ├── skin-black-light.css │ │ ├── skin-black-light.min.css │ │ ├── skin-black.css │ │ ├── skin-black.min.css │ │ ├── skin-blue-light.css │ │ ├── skin-blue-light.min.css │ │ ├── skin-blue.css │ │ ├── skin-blue.min.css │ │ ├── skin-green-light.css │ │ ├── skin-green-light.min.css │ │ ├── skin-green.css │ │ ├── skin-green.min.css │ │ ├── skin-purple-light.css │ │ ├── skin-purple-light.min.css │ │ ├── skin-purple.css │ │ ├── skin-purple.min.css │ │ ├── skin-red-light.css │ │ ├── skin-red-light.min.css │ │ ├── skin-red.css │ │ ├── skin-red.min.css │ │ ├── skin-yellow-light.css │ │ ├── skin-yellow-light.min.css │ │ ├── skin-yellow.css │ │ └── skin-yellow.min.css ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── sandu.png │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ └── user8-128x128.jpg └── js │ ├── app.js │ ├── app.min.js │ ├── demo.js │ └── pages │ ├── dashboard.js │ └── dashboard2.js ├── error_log ├── font-awesome.min.css ├── index.php ├── ionicons.min.css ├── model ├── active_student.php ├── add_attendance.php ├── add_classroom.php ├── add_emarks_range_grade.php ├── add_events.php ├── add_exam.php ├── add_exam_timetable.php ├── add_friends.php ├── add_grade.php ├── add_group_message.php ├── add_message.php ├── add_payment_notifications.php ├── add_petty_cash.php ├── add_student.php ├── add_student_exam_mark.php ├── add_student_exam_mark1.php ├── add_student_exam_mark_backup.php ├── add_student_first_payment.php ├── add_student_grade_subject.php ├── add_student_payment.php ├── add_student_subject.php ├── add_subject.php ├── add_subject_routing.php ├── add_teacher.php ├── add_teacher_salary.php ├── add_timetable.php ├── approve_petty_cash.php ├── confirm_friends.php ├── confirm_msg_read.php ├── confirm_notifications_read.php ├── delete_exam_routing.php ├── delete_friend_request.php ├── delete_grade.php ├── delete_range_grade.php ├── delete_record.php ├── delete_record1.php ├── delete_student_grade_subject.php ├── error_log ├── get_admin_profile.php ├── get_classroom.php ├── get_events.php ├── get_exam.php ├── get_exam_routing.php ├── get_exam_timetable.php ├── get_grade.php ├── get_parents_profile.php ├── get_student.php ├── get_student1.php ├── get_student_profile.php ├── get_student_subject.php ├── get_subject.php ├── get_subject_routing.php ├── get_subject_timetable.php ├── get_teacher.php ├── get_teacher_profile.php ├── get_teacher_timetable.php ├── get_timetable.php ├── index.php ├── leave_student.php ├── update_admin_profile.php ├── update_classroom.php ├── update_emarks_range_grade.php ├── update_events.php ├── update_exam.php ├── update_exam_timetable.php ├── update_grade.php ├── update_parents_profile.php ├── update_student.php ├── update_student_exam_mark.php ├── update_student_exam_mark1.php ├── update_student_exam_mark2.php ├── update_student_profile.php ├── update_student_subject.php ├── update_subject.php ├── update_subject_fee.php ├── update_subject_routing.php ├── update_teacher.php ├── update_teacher_profile.php ├── update_timetable.php └── user_login.php ├── package.json ├── pages ├── UI │ ├── buttons.html │ ├── general.html │ ├── icons.html │ ├── modals.html │ ├── sliders.html │ └── timeline.html ├── calendar.html ├── charts │ ├── chartjs.html │ ├── flot.html │ ├── inline.html │ └── morris.html ├── class_room.php ├── examples │ ├── 404.html │ ├── 500.html │ ├── blank.html │ ├── invoice-print.html │ ├── invoice.html │ ├── lockscreen.html │ ├── login.html │ ├── profile.html │ └── register.html ├── forms │ ├── advanced.html │ ├── editors.html │ └── general.html ├── layout │ ├── boxed.html │ ├── collapsed-sidebar.html │ ├── fixed.html │ └── top-nav.html ├── mailbox │ ├── compose.html │ ├── mailbox.html │ └── read-mail.html ├── tables │ ├── data.html │ └── simple.html └── widgets.html ├── plugins ├── bootstrap-slider │ ├── bootstrap-slider.js │ └── slider.css ├── bootstrap-wysihtml5 │ ├── bootstrap3-wysihtml5.all.js │ ├── bootstrap3-wysihtml5.all.min.js │ ├── bootstrap3-wysihtml5.css │ └── bootstrap3-wysihtml5.min.css ├── chartjs │ ├── Chart.js │ └── Chart.min.js ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ └── icon.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmp.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js ├── colorpicker │ ├── bootstrap-colorpicker.css │ ├── bootstrap-colorpicker.js │ ├── bootstrap-colorpicker.min.css │ ├── bootstrap-colorpicker.min.js │ └── img │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ └── saturation.png ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── dataTables.bootstrap.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ └── Responsive │ │ │ ├── License.txt │ │ │ ├── css │ │ │ ├── dataTables.responsive.css │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ ├── child-rows │ │ │ │ ├── column-control.html │ │ │ │ ├── custom-renderer.html │ │ │ │ ├── disable-child-rows.html │ │ │ │ ├── index.html │ │ │ │ ├── right-column.html │ │ │ │ └── whole-row-control.html │ │ │ ├── display-control │ │ │ │ ├── auto.html │ │ │ │ ├── classes.html │ │ │ │ ├── complexHeader.html │ │ │ │ ├── fixedHeader.html │ │ │ │ ├── index.html │ │ │ │ └── init-classes.html │ │ │ ├── index.html │ │ │ ├── initialisation │ │ │ │ ├── ajax.html │ │ │ │ ├── className.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── new.html │ │ │ │ └── option.html │ │ │ └── styling │ │ │ │ ├── bootstrap.html │ │ │ │ ├── compact.html │ │ │ │ ├── foundation.html │ │ │ │ ├── index.html │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ ├── dataTables.responsive.js │ │ │ └── dataTables.responsive.min.js │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js ├── daterangepicker │ ├── daterangepicker-bs3.css │ ├── daterangepicker.js │ ├── moment.js │ └── moment.min.js ├── fastclick │ ├── fastclick.js │ └── fastclick.min.js ├── flot │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.colorhelpers.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.canvas.min.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.categories.min.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.crosshair.min.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.errorbars.min.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.fillbetween.min.js │ ├── jquery.flot.image.js │ ├── jquery.flot.image.min.js │ ├── jquery.flot.js │ ├── jquery.flot.min.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.navigate.min.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.resize.min.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.selection.min.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.stack.min.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.symbol.min.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.threshold.min.js │ ├── jquery.flot.time.js │ └── jquery.flot.time.min.js ├── fullcalendar │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.css │ ├── fullcalendar.min.js │ └── fullcalendar.print.css ├── iCheck │ ├── all.css │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ ├── icheck.js │ ├── icheck.min.js │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png ├── input-mask │ ├── jquery.inputmask.date.extensions.js │ ├── jquery.inputmask.extensions.js │ ├── jquery.inputmask.js │ ├── jquery.inputmask.numeric.extensions.js │ ├── jquery.inputmask.phone.extensions.js │ ├── jquery.inputmask.regex.extensions.js │ └── phone-codes │ │ ├── phone-be.json │ │ ├── phone-codes.json │ │ └── readme.txt ├── ionslider │ ├── img │ │ ├── sprite-skin-flat.png │ │ └── sprite-skin-nice.png │ ├── ion.rangeSlider.css │ ├── ion.rangeSlider.min.js │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinNice.css ├── jQuery │ └── jQuery-2.1.4.min.js ├── jQueryUI │ ├── jquery-ui.js │ └── jquery-ui.min.js ├── jvectormap │ ├── jquery-jvectormap-1.2.2.css │ ├── jquery-jvectormap-1.2.2.min.js │ └── jquery-jvectormap-world-mill-en.js ├── knob │ └── jquery.knob.js ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js ├── pace │ └── pace.js ├── select2 │ ├── i18n │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js ├── slimScroll │ ├── jquery.slimscroll.js │ └── jquery.slimscroll.min.js ├── sparkline │ ├── jquery.sparkline.js │ └── jquery.sparkline.min.js └── timepicker │ ├── bootstrap-timepicker.css │ ├── bootstrap-timepicker.js │ ├── bootstrap-timepicker.min.css │ └── bootstrap-timepicker.min.js ├── uploads ├── 20220414010104.png ├── 20220414010229.jpg ├── 20220414125105.png ├── 20220414125856.png ├── bg.jpg ├── error.png ├── index.php ├── logo2.png └── logo3.png ├── view ├── add_attendance.php ├── add_friends.php ├── add_friends1.php ├── add_friends2.php ├── admin_profile.php ├── alert.php ├── all_events.php ├── all_events1.php ├── all_events2.php ├── all_notifications.php ├── all_notifications1.php ├── all_student.php ├── all_student_due_payment.php ├── all_subject1.php ├── all_subject2.php ├── all_subject3.php ├── all_teacher.php ├── all_teacher1.php ├── all_teacher3.php ├── all_timetable1.php ├── all_timetable2.php ├── all_timetable3.php ├── class_room.php ├── conversation_history_admin.php ├── conversation_history_admin1.php ├── conversation_history_student.php ├── conversation_history_student1.php ├── conversation_history_teacher.php ├── conversation_history_teacher1.php ├── create_events.php ├── create_group_message.php ├── dashboard.php ├── dashboard1.php ├── dashboard2.php ├── dashboard3.php ├── edit_student.php ├── edit_student2.php ├── emarks_range_grade_update_form.php ├── error_log ├── event.php ├── event1.php ├── events_update_form.php ├── exam.php ├── exam_mark_text.php ├── exam_routing.php ├── exam_timetable.php ├── exam_timetable2.php ├── exam_timetable_grade_wise.php ├── exam_timetable_insert_form.php ├── exam_timetable_insert_form2.php ├── exam_timetable_update_form.php ├── exam_timetable_update_form2.php ├── find_friends.php ├── footer.php ├── friend_profile.php ├── grade.php ├── group_message.php ├── head.php ├── header.php ├── header_admin.php ├── header_parents.php ├── header_student.php ├── header_teacher.php ├── index.php ├── login.php ├── my_attendance.php ├── my_attendance2.php ├── my_attendance_history.php ├── my_attendance_history1.php ├── my_attendance_history2.php ├── my_attendance_history3.php ├── my_events.php ├── my_events2.php ├── my_exam_marks.php ├── my_exam_marks1.php ├── my_exam_marks_history.php ├── my_exam_timetable.php ├── my_exam_timetable1.php ├── my_friends.php ├── my_friends1.php ├── my_friends2.php ├── my_payments.php ├── my_petty_cash.php ├── my_profile.php ├── my_profile_update_form.php ├── my_profile_update_form1.php ├── my_profile_update_form2.php ├── my_profile_update_form3.php ├── my_salary.php ├── my_sons_attendance.php ├── my_sons_attendance_history.php ├── my_sons_attendance_history1.php ├── my_sons_exam_marks.php ├── my_sons_exam_marks_history.php ├── my_sons_exam_timetable.php ├── my_sons_payments.php ├── my_sons_profile.php ├── my_sons_subject.php ├── my_sons_teacher.php ├── my_sons_timetable.php ├── my_student.php ├── my_student_exam_mark_insert_form.php ├── my_student_exam_mark_update_form.php ├── my_student_exam_marks.php ├── my_student_exam_marks1.php ├── my_student_exam_marks_history.php ├── my_subject.php ├── my_subject2.php ├── my_teacher.php ├── my_timetable.php ├── my_timetable2.php ├── navbar.php ├── navbar_li.php ├── parents_profile.php ├── petty_cash.php ├── petty_cash_details.php ├── range_grade_text.php ├── show_classroom_table.php ├── show_events.php ├── show_events1.php ├── show_events2.php ├── show_exam_routing_table.php ├── show_exam_table.php ├── show_friend_request.php ├── show_grade_table.php ├── show_group_message.php ├── show_leave_student_table.php ├── show_my_student.php ├── show_my_student1.php ├── show_student.php ├── show_student1.php ├── show_student2.php ├── show_student_grade_subject.php ├── show_student_subject.php ├── show_student_subject1.php ├── show_subject_routing_table.php ├── show_subject_table.php ├── show_teacher2.php ├── show_teacher_table.php ├── sidebar.php ├── sidebar1.php ├── sidebar2.php ├── sidebar3.php ├── student.php ├── student_attendance_history.php ├── student_attendance_history1.php ├── student_due_payment.php ├── student_exam_mark_insert_form.php ├── student_exam_mark_insert_form1.php ├── student_exam_mark_subject_table.php ├── student_exam_mark_subject_view_table.php ├── student_exam_mark_update_form.php ├── student_exam_mark_view_form.php ├── student_exam_marks.php ├── student_exam_marks_history.php ├── student_first_payment.php ├── student_grade_wise.php ├── student_grade_wise2.php ├── student_leave.php ├── student_payment.php ├── student_payment_details.php ├── student_payment_details2.php ├── student_payment_details3.php ├── student_payment_details4.php ├── student_payment_history.php ├── student_payment_invoice.php ├── student_payment_invoice1.php ├── student_profile.php ├── student_profile1.php ├── subject.php ├── subject_fee_text.php ├── subject_routing.php ├── teacher.php ├── teacher_attendance_history.php ├── teacher_attendance_history1.php ├── teacher_profile.php ├── teacher_profile1.php ├── teacher_profile2.php ├── teacher_salary_details.php ├── teacher_salary_details2.php ├── teacher_salary_details3.php ├── teacher_salary_history.php ├── teacher_salary_history1.php ├── teacher_salary_invoice.php ├── teacher_salary_invoice1.php ├── teacher_timetable.php ├── test_payment_notifi.php ├── timetable.php ├── timetable_grade_wise.php ├── timetable_grade_wise2.php ├── timetable_insert_form.php ├── timetable_insert_form2.php ├── timetable_update_form.php ├── timetable_update_form2.php └── unread_msg.php └── yarn.lock /Database/DemoSMS.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Database/DemoSMS.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/LICENSE -------------------------------------------------------------------------------- /Output/Admin-View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Output/Admin-View.png -------------------------------------------------------------------------------- /Output/Main-Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Output/Main-Page.png -------------------------------------------------------------------------------- /Output/Parent-View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Output/Parent-View.png -------------------------------------------------------------------------------- /Output/Teacher-View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Output/Teacher-View.png -------------------------------------------------------------------------------- /Output/student-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/Output/student-view.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/README.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/CONTRIBUTING.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/LICENSE.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/MAINTAINING.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/README.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/composer.json -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/config.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/config.jshintrc -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/docs/02-Scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/docs/02-Scales.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/docs/10-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/docs/10-Notes.md -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/gulpfile.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/karma.conf.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/karma.conf.ci.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/karma.conf.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/package.json -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/samples/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/samples/pie.html -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/samples/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/samples/utils.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/src/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/src/chart.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/src/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Chart.js-master/src/core/core.js -------------------------------------------------------------------------------- /[Source Code] School Management System/Chart.js-master/thankyou.md: -------------------------------------------------------------------------------- 1 | ## Thanks go out to: 2 | 3 | - **@n8agrin** - Twitter handle donation! 4 | -------------------------------------------------------------------------------- /[Source Code] School Management System/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/Gruntfile.js -------------------------------------------------------------------------------- /[Source Code] School Management System/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/backup.php -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bootstrap/js/npm.js -------------------------------------------------------------------------------- /[Source Code] School Management System/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/bower.json -------------------------------------------------------------------------------- /[Source Code] School Management System/build/bootstrap-less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/bootstrap-less/mixins.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/404_500_errors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/404_500_errors.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/AdminLTE.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/AdminLTE.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/alerts.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/bootstrap-social.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/bootstrap-social.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/boxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/boxes.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/buttons.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/callout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/callout.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/carousel.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/control-sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/control-sidebar.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/core.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/direct-chat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/direct-chat.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/dropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/dropdown.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/forms.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/fullcalendar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/fullcalendar.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/header.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/info-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/info-box.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/invoice.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/invoice.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/labels.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/lockscreen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/lockscreen.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/mailbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/mailbox.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/miscellaneous.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/miscellaneous.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/mixins.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/modal.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/navs.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/print.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/products.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/products.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/profile.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/progress-bars.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/select2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/select2.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/sidebar-mini.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/sidebar-mini.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/sidebar.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/_all-skins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/_all-skins.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-black.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-black.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-blue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-blue.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-green.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-purple.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-purple.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-red.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-red.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/skins/skin-yellow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/skins/skin-yellow.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/small-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/small-box.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/social-widgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/social-widgets.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/table.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/timeline.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/users-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/users-list.less -------------------------------------------------------------------------------- /[Source Code] School Management System/build/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/build/less/variables.less -------------------------------------------------------------------------------- /[Source Code] School Management System/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/changelog -------------------------------------------------------------------------------- /[Source Code] School Management System/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/chart.js -------------------------------------------------------------------------------- /[Source Code] School Management System/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/composer.json -------------------------------------------------------------------------------- /[Source Code] School Management System/controller/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/controller/config.php -------------------------------------------------------------------------------- /[Source Code] School Management System/controller/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/AdminLTE.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/AdminLTE.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/_all-skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/_all-skins.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/_all-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/_all-skins.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-black.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-black.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-black.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-blue.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-blue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-blue.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-green.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-green.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-purple.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-red-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-red-light.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-red.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-red.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-red.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/css/skins/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/css/skins/skin-yellow.css -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/avatar.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/avatar04.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/avatar2.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/avatar3.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/credit/visa.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/icons.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/photo1.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/photo2.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/photo3.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/photo4.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/sandu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/sandu.png -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/js/app.js -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/js/app.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/js/demo.js -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /[Source Code] School Management System/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /[Source Code] School Management System/error_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/error_log -------------------------------------------------------------------------------- /[Source Code] School Management System/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/font-awesome.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/index.php -------------------------------------------------------------------------------- /[Source Code] School Management System/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/ionicons.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/model/active_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/active_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_attendance.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_classroom.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_emarks_range_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_emarks_range_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_exam.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_friends.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_group_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_group_message.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_message.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_petty_cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_petty_cash.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_student_exam_mark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_student_exam_mark.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_student_exam_mark1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_student_exam_mark1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_student_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_student_payment.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_student_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_student_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_subject_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_subject_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_teacher_salary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_teacher_salary.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/add_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/add_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/approve_petty_cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/approve_petty_cash.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/confirm_friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/confirm_friends.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/confirm_msg_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/confirm_msg_read.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_exam_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_exam_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_friend_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_friend_request.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_range_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_range_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_record.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/delete_record1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/delete_record1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/error_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/error_log -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_admin_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_admin_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_classroom.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_exam.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_exam_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_exam_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_parents_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_parents_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_student1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_student1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_student_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_student_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_student_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_student_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_subject_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_subject_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_subject_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_subject_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_teacher_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_teacher_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_teacher_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_teacher_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/get_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/get_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Source Code] School Management System/model/leave_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/leave_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_admin_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_admin_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_classroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_classroom.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_exam.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_parents_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_parents_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_student_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_student_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_student_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_student_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_subject_fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_subject_fee.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_subject_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_subject_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_teacher_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_teacher_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/update_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/update_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/model/user_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/model/user_login.php -------------------------------------------------------------------------------- /[Source Code] School Management System/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/package.json -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/buttons.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/general.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/icons.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/modals.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/sliders.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/UI/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/UI/timeline.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/calendar.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/charts/chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/charts/chartjs.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/charts/flot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/charts/flot.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/charts/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/charts/inline.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/charts/morris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/charts/morris.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/class_room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/class_room.php -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/404.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/500.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/blank.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/invoice-print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/invoice-print.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/invoice.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/lockscreen.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/login.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/profile.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/examples/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/examples/register.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/forms/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/forms/advanced.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/forms/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/forms/editors.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/forms/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/forms/general.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/layout/boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/layout/boxed.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/layout/fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/layout/fixed.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/layout/top-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/layout/top-nav.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/mailbox/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/mailbox/compose.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/mailbox/mailbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/mailbox/mailbox.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/mailbox/read-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/mailbox/read-mail.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/tables/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/tables/data.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/tables/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/tables/simple.html -------------------------------------------------------------------------------- /[Source Code] School Management System/pages/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/pages/widgets.html -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/chartjs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/chartjs/Chart.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/chartjs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/chartjs/Chart.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/build-config.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/contents.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/daterangepicker/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/daterangepicker/moment.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/fastclick/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/fastclick/fastclick.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.image.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/all.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/_all.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/aero.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/blue.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/flat.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/green.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/grey.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/orange.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/pink.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/purple.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/red.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/yellow.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/icheck.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/icheck.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/_all.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/aero.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/blue.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/green.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/grey.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/line.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/orange.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/pink.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/purple.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/red.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/line/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/line/yellow.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/_all.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/aero.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/blue.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/green.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/grey.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/orange.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/pink.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/purple.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/red.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/yellow.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/_all.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/aero.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/blue.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/green.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/grey.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/orange.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/pink.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/purple.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/red.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/square.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/square.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/jQueryUI/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/jQueryUI/jquery-ui.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/knob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/knob/jquery.knob.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/morris/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/morris/morris.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/morris/morris.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/morris/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/morris/morris.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/pace/pace.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/az.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/bg.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/ca.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/cs.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/da.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/de.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/en.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/es.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/et.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/eu.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/fa.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/fi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/fr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/gl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/he.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/hi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/hr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/hu.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/id.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/is.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/it.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/ko.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/lt.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/lv.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/mk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/nb.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/nl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/pl.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/pt.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/ro.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/ru.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/sk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/sr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/sv.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/th.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/tr.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/uk.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/vi.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/select2.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/select2.full.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/select2.js -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/select2.min.css -------------------------------------------------------------------------------- /[Source Code] School Management System/plugins/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/plugins/select2/select2.min.js -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/20220414010104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/20220414010104.png -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/20220414010229.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/20220414010229.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/20220414125105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/20220414125105.png -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/20220414125856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/20220414125856.png -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/bg.jpg -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/error.png -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/logo2.png -------------------------------------------------------------------------------- /[Source Code] School Management System/uploads/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/uploads/logo3.png -------------------------------------------------------------------------------- /[Source Code] School Management System/view/add_attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/add_attendance.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/add_friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/add_friends.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/add_friends1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/add_friends1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/add_friends2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/add_friends2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/admin_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/admin_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/alert.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_events1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_events1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_events2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_events2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_notifications.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_notifications1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_notifications1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_subject1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_subject1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_subject2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_subject2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_subject3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_subject3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_teacher1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_teacher1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_teacher3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_teacher3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_timetable1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_timetable1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_timetable2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_timetable2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/all_timetable3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/all_timetable3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/class_room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/class_room.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/create_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/create_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/create_group_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/create_group_message.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/dashboard.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/dashboard1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/dashboard1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/dashboard2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/dashboard2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/dashboard3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/dashboard3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/edit_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/edit_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/edit_student2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/edit_student2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/error_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/error_log -------------------------------------------------------------------------------- /[Source Code] School Management System/view/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/event.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/event1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/event1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/events_update_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/events_update_form.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/exam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/exam.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/exam_mark_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/exam_mark_text.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/exam_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/exam_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/exam_timetable2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/exam_timetable2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/find_friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/find_friends.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/footer.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/friend_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/friend_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/grade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/grade.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/group_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/group_message.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/head.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/header.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/header_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/header_admin.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/header_parents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/header_parents.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/header_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/header_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/header_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/header_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Source Code] School Management System/view/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/login.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance_history.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance_history1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance_history1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance_history2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance_history2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_attendance_history3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_attendance_history3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_events2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_events2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_exam_marks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_exam_marks.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_exam_marks1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_exam_marks1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_exam_marks_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_exam_marks_history.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_exam_timetable1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_exam_timetable1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_friends.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_friends1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_friends1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_friends2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_friends2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_payments.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_petty_cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_petty_cash.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_profile_update_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_profile_update_form.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_salary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_salary.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_attendance.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_exam_marks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_exam_marks.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_exam_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_exam_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_payments.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_sons_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_sons_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_student_exam_marks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_student_exam_marks.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_student_exam_marks1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_student_exam_marks1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_subject2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_subject2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/my_timetable2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/my_timetable2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/navbar.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/navbar_li.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/navbar_li.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/parents_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/parents_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/petty_cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/petty_cash.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/petty_cash_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/petty_cash_details.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/range_grade_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/range_grade_text.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_classroom_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_classroom_table.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_events.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_events1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_events1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_events2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_events2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_exam_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_exam_table.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_friend_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_friend_request.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_grade_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_grade_table.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_group_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_group_message.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_my_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_my_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_my_student1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_my_student1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_student1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_student1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_student2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_student2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_student_subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_student_subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_student_subject1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_student_subject1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_subject_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_subject_table.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_teacher2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_teacher2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/show_teacher_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/show_teacher_table.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/sidebar.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/sidebar1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/sidebar1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/sidebar2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/sidebar2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/sidebar3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/sidebar3.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_due_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_due_payment.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_exam_marks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_exam_marks.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_first_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_first_payment.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_grade_wise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_grade_wise.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_grade_wise2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_grade_wise2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_leave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_leave.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_payment.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/student_profile1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/student_profile1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/subject.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/subject_fee_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/subject_fee_text.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/subject_routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/subject_routing.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_profile.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_profile1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_profile1.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_profile2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_profile2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_salary_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_salary_details.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_salary_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_salary_history.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_salary_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_salary_invoice.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/teacher_timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/teacher_timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/test_payment_notifi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/test_payment_notifi.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_grade_wise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_grade_wise.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_grade_wise2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_grade_wise2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_insert_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_insert_form.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_insert_form2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_insert_form2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_update_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_update_form.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/timetable_update_form2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/timetable_update_form2.php -------------------------------------------------------------------------------- /[Source Code] School Management System/view/unread_msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/view/unread_msg.php -------------------------------------------------------------------------------- /[Source Code] School Management System/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetProjectsIdea/Create-School-Management-System-with-PHP-MySQL/HEAD/[Source Code] School Management System/yarn.lock --------------------------------------------------------------------------------