├── CollegeSpace ├── ExamPaper.php ├── Footer.php ├── JQuery │ ├── jquery-3.3.1.js │ └── jquery-3.4.1.min.js ├── Navbar.php ├── Notes.php ├── Notices.php ├── Sysllabus.php ├── adminpage.php ├── bootstrap-4.3.1-dist │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── connect_db.php ├── contactus.php ├── index.php ├── mystyle.css ├── notesdb │ ├── ai.php │ └── nlp.php ├── picture │ ├── admission.png │ ├── dean.png │ ├── dev.png │ └── hod.png ├── sysllabusdb │ └── c.php ├── upload │ ├── AI_POONAM │ │ ├── 1.pdf │ │ ├── 2.1.pdf │ │ ├── 2.2.pdf │ │ ├── 2.pdf │ │ ├── 3.1.pdf │ │ ├── 3.2.pdf │ │ └── 3.3.pdf │ ├── NLP _MEENA │ │ ├── Lecture1.pdf │ │ ├── Lecture2.pdf │ │ ├── Lecture3.pdf │ │ ├── Lecture4.pdf │ │ ├── Note10.pdf │ │ ├── Note5.pdf │ │ ├── Note6.pdf │ │ ├── Note7.pdf │ │ ├── Note8.pdf │ │ └── Note9.pdf │ ├── Sysllabus │ │ └── c.pdf │ └── sysllbus_AI.pdf └── uploads │ └── bottle.png ├── README.md ├── Screenshot ├── admin.png ├── contact us.png ├── files.png ├── home.png ├── notes.png └── noticeboard.png └── sql_database └── collegespace.sql /CollegeSpace/ExamPaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/ExamPaper.php -------------------------------------------------------------------------------- /CollegeSpace/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/Footer.php -------------------------------------------------------------------------------- /CollegeSpace/JQuery/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/JQuery/jquery-3.3.1.js -------------------------------------------------------------------------------- /CollegeSpace/JQuery/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/JQuery/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /CollegeSpace/Navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/Navbar.php -------------------------------------------------------------------------------- /CollegeSpace/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/Notes.php -------------------------------------------------------------------------------- /CollegeSpace/Notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/Notices.php -------------------------------------------------------------------------------- /CollegeSpace/Sysllabus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/Sysllabus.php -------------------------------------------------------------------------------- /CollegeSpace/adminpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/adminpage.php -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.js -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/bootstrap-4.3.1-dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /CollegeSpace/connect_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/connect_db.php -------------------------------------------------------------------------------- /CollegeSpace/contactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/contactus.php -------------------------------------------------------------------------------- /CollegeSpace/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/index.php -------------------------------------------------------------------------------- /CollegeSpace/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/mystyle.css -------------------------------------------------------------------------------- /CollegeSpace/notesdb/ai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/notesdb/ai.php -------------------------------------------------------------------------------- /CollegeSpace/notesdb/nlp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/notesdb/nlp.php -------------------------------------------------------------------------------- /CollegeSpace/picture/admission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/picture/admission.png -------------------------------------------------------------------------------- /CollegeSpace/picture/dean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/picture/dean.png -------------------------------------------------------------------------------- /CollegeSpace/picture/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/picture/dev.png -------------------------------------------------------------------------------- /CollegeSpace/picture/hod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/picture/hod.png -------------------------------------------------------------------------------- /CollegeSpace/sysllabusdb/c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/sysllabusdb/c.php -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/1.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/2.1.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/2.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/2.2.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/2.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/3.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/3.1.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/3.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/3.2.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/AI_POONAM/3.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/AI_POONAM/3.3.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Lecture1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Lecture1.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Lecture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Lecture2.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Lecture3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Lecture3.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Lecture4.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note10.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note5.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note6.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note7.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note8.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/NLP _MEENA/Note9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/NLP _MEENA/Note9.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/Sysllabus/c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/Sysllabus/c.pdf -------------------------------------------------------------------------------- /CollegeSpace/upload/sysllbus_AI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/upload/sysllbus_AI.pdf -------------------------------------------------------------------------------- /CollegeSpace/uploads/bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/CollegeSpace/uploads/bottle.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/admin.png -------------------------------------------------------------------------------- /Screenshot/contact us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/contact us.png -------------------------------------------------------------------------------- /Screenshot/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/files.png -------------------------------------------------------------------------------- /Screenshot/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/home.png -------------------------------------------------------------------------------- /Screenshot/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/notes.png -------------------------------------------------------------------------------- /Screenshot/noticeboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/Screenshot/noticeboard.png -------------------------------------------------------------------------------- /sql_database/collegespace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaspreetsidhu3/collegespace/HEAD/sql_database/collegespace.sql --------------------------------------------------------------------------------