├── .htaccess ├── AdminLogin.php ├── Database └── ICS_DB.sql ├── FacultyDetails.php ├── LICENCE.md ├── README.md ├── RegestrationDetails.php ├── ResultDetails.php ├── StudentDetails.php ├── UpdateRegestrationDetails.php ├── UpdateResultDetails.php ├── _config.yml ├── about.php ├── addConfirm.php ├── addnewfaculty.php ├── addnewstudent.php ├── adminhead.php ├── allfoot.php ├── allhead.php ├── askquery.php ├── css ├── bootstrap.css ├── bootstrap.min.css └── modern-business.css ├── database.php ├── examDetails.php ├── facultylogin.php ├── fhead.php ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── spinning.less │ ├── stacked.less │ └── variables.less └── scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _spinning.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footadmin.php ├── guestdetails.php ├── images ├── 1200x300.png ├── 14522157584_a67ab2e898_o.png ├── 1900x1080.png ├── 1900x10801.png ├── 1900x10802.png ├── 1900x10803.png ├── 3271.jpg ├── 500×300.png ├── 600x300.png ├── 64x64.png ├── 687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif ├── 700x300.png ├── 700x400.png ├── 700x450.png ├── 750x450.png ├── 750×500.png ├── 7fb1f193435815a86c8484f82b9589e1 - Copy.jpg ├── 7fb1f193435815a86c8484f82b9589e1.jpg ├── 900x300.png ├── Hopeful_student_1.jpg ├── Javascript-shopping-cart.png ├── Returning-Student.jpg ├── apache_webserver_logo.png ├── favicon.ico ├── happy_student4.jpg ├── library_guy_900x400.jpg ├── maxresdefault.jpg ├── new │ ├── 20160518144520.jpg │ ├── 253f9ac.jpg │ ├── Lærer-studerende-på-UCN.jpg │ ├── sif10225.225782846266003821356.jpg │ ├── teacher2.jpg │ ├── teacher222223.jpg │ └── young_woman_with_laptop_english_teacher_visual_stage.jpg ├── photothumb.db ├── smilingFemaleStudent.jpg ├── tempIgnouPro.png └── welcome46.jpg ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── contact_me.js ├── jqBootstrapValidation.js └── jquery.js ├── loginlinkadmin.php ├── loginlinkfaculty.php ├── loginlinkstudent.php ├── logoutadmin.php ├── logoutfaculty.php ├── logoutstudent.php ├── makeresult.php ├── mydetailsstudent.php ├── postquerypublic.php ├── qureydetails.php ├── registrationform.php ├── studenthead.php ├── studentlogin.php ├── takeexam.php ├── takeexam2.php ├── updatefaculty.php ├── updateguest.php ├── updatequery.php ├── updatestudent.php ├── viewquery.php ├── viewresult.php ├── welcomeadmin.php ├── welcomefaculty.php └── welcomestudent.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/.htaccess -------------------------------------------------------------------------------- /AdminLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/AdminLogin.php -------------------------------------------------------------------------------- /Database/ICS_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/Database/ICS_DB.sql -------------------------------------------------------------------------------- /FacultyDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/FacultyDetails.php -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/README.md -------------------------------------------------------------------------------- /RegestrationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/RegestrationDetails.php -------------------------------------------------------------------------------- /ResultDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/ResultDetails.php -------------------------------------------------------------------------------- /StudentDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/StudentDetails.php -------------------------------------------------------------------------------- /UpdateRegestrationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/UpdateRegestrationDetails.php -------------------------------------------------------------------------------- /UpdateResultDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/UpdateResultDetails.php -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/_config.yml -------------------------------------------------------------------------------- /about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/about.php -------------------------------------------------------------------------------- /addConfirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/addConfirm.php -------------------------------------------------------------------------------- /addnewfaculty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/addnewfaculty.php -------------------------------------------------------------------------------- /addnewstudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/addnewstudent.php -------------------------------------------------------------------------------- /adminhead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/adminhead.php -------------------------------------------------------------------------------- /allfoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/allfoot.php -------------------------------------------------------------------------------- /allhead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/allhead.php -------------------------------------------------------------------------------- /askquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/askquery.php -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/modern-business.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/css/modern-business.css -------------------------------------------------------------------------------- /database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/database.php -------------------------------------------------------------------------------- /examDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/examDetails.php -------------------------------------------------------------------------------- /facultylogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/facultylogin.php -------------------------------------------------------------------------------- /fhead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fhead.php -------------------------------------------------------------------------------- /font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/core.less -------------------------------------------------------------------------------- /font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/icons.less -------------------------------------------------------------------------------- /font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/larger.less -------------------------------------------------------------------------------- /font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/list.less -------------------------------------------------------------------------------- /font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/path.less -------------------------------------------------------------------------------- /font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/less/variables.less -------------------------------------------------------------------------------- /font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_spinning.scss -------------------------------------------------------------------------------- /font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /footadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/footadmin.php -------------------------------------------------------------------------------- /guestdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/guestdetails.php -------------------------------------------------------------------------------- /images/1200x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/1200x300.png -------------------------------------------------------------------------------- /images/14522157584_a67ab2e898_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/14522157584_a67ab2e898_o.png -------------------------------------------------------------------------------- /images/1900x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/1900x1080.png -------------------------------------------------------------------------------- /images/1900x10801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/1900x10801.png -------------------------------------------------------------------------------- /images/1900x10802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/1900x10802.png -------------------------------------------------------------------------------- /images/1900x10803.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/1900x10803.png -------------------------------------------------------------------------------- /images/3271.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/3271.jpg -------------------------------------------------------------------------------- /images/500×300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/500×300.png -------------------------------------------------------------------------------- /images/600x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/600x300.png -------------------------------------------------------------------------------- /images/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/64x64.png -------------------------------------------------------------------------------- /images/687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif -------------------------------------------------------------------------------- /images/700x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/700x300.png -------------------------------------------------------------------------------- /images/700x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/700x400.png -------------------------------------------------------------------------------- /images/700x450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/700x450.png -------------------------------------------------------------------------------- /images/750x450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/750x450.png -------------------------------------------------------------------------------- /images/750×500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/750×500.png -------------------------------------------------------------------------------- /images/7fb1f193435815a86c8484f82b9589e1 - Copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/7fb1f193435815a86c8484f82b9589e1 - Copy.jpg -------------------------------------------------------------------------------- /images/7fb1f193435815a86c8484f82b9589e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/7fb1f193435815a86c8484f82b9589e1.jpg -------------------------------------------------------------------------------- /images/900x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/900x300.png -------------------------------------------------------------------------------- /images/Hopeful_student_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/Hopeful_student_1.jpg -------------------------------------------------------------------------------- /images/Javascript-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/Javascript-shopping-cart.png -------------------------------------------------------------------------------- /images/Returning-Student.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/Returning-Student.jpg -------------------------------------------------------------------------------- /images/apache_webserver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/apache_webserver_logo.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/happy_student4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/happy_student4.jpg -------------------------------------------------------------------------------- /images/library_guy_900x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/library_guy_900x400.jpg -------------------------------------------------------------------------------- /images/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/maxresdefault.jpg -------------------------------------------------------------------------------- /images/new/20160518144520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/20160518144520.jpg -------------------------------------------------------------------------------- /images/new/253f9ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/253f9ac.jpg -------------------------------------------------------------------------------- /images/new/Lærer-studerende-på-UCN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/Lærer-studerende-på-UCN.jpg -------------------------------------------------------------------------------- /images/new/sif10225.225782846266003821356.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/sif10225.225782846266003821356.jpg -------------------------------------------------------------------------------- /images/new/teacher2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/teacher2.jpg -------------------------------------------------------------------------------- /images/new/teacher222223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/teacher222223.jpg -------------------------------------------------------------------------------- /images/new/young_woman_with_laptop_english_teacher_visual_stage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/new/young_woman_with_laptop_english_teacher_visual_stage.jpg -------------------------------------------------------------------------------- /images/photothumb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/photothumb.db -------------------------------------------------------------------------------- /images/smilingFemaleStudent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/smilingFemaleStudent.jpg -------------------------------------------------------------------------------- /images/tempIgnouPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/tempIgnouPro.png -------------------------------------------------------------------------------- /images/welcome46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/images/welcome46.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/js/contact_me.js -------------------------------------------------------------------------------- /js/jqBootstrapValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/js/jqBootstrapValidation.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/js/jquery.js -------------------------------------------------------------------------------- /loginlinkadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/loginlinkadmin.php -------------------------------------------------------------------------------- /loginlinkfaculty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/loginlinkfaculty.php -------------------------------------------------------------------------------- /loginlinkstudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/loginlinkstudent.php -------------------------------------------------------------------------------- /logoutadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/logoutadmin.php -------------------------------------------------------------------------------- /logoutfaculty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/logoutfaculty.php -------------------------------------------------------------------------------- /logoutstudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/logoutstudent.php -------------------------------------------------------------------------------- /makeresult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/makeresult.php -------------------------------------------------------------------------------- /mydetailsstudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/mydetailsstudent.php -------------------------------------------------------------------------------- /postquerypublic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/postquerypublic.php -------------------------------------------------------------------------------- /qureydetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/qureydetails.php -------------------------------------------------------------------------------- /registrationform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/registrationform.php -------------------------------------------------------------------------------- /studenthead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/studenthead.php -------------------------------------------------------------------------------- /studentlogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/studentlogin.php -------------------------------------------------------------------------------- /takeexam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/takeexam.php -------------------------------------------------------------------------------- /takeexam2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/takeexam2.php -------------------------------------------------------------------------------- /updatefaculty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/updatefaculty.php -------------------------------------------------------------------------------- /updateguest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/updateguest.php -------------------------------------------------------------------------------- /updatequery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/updatequery.php -------------------------------------------------------------------------------- /updatestudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/updatestudent.php -------------------------------------------------------------------------------- /viewquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/viewquery.php -------------------------------------------------------------------------------- /viewresult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/viewresult.php -------------------------------------------------------------------------------- /welcomeadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/welcomeadmin.php -------------------------------------------------------------------------------- /welcomefaculty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/welcomefaculty.php -------------------------------------------------------------------------------- /welcomestudent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/Institute-of-Current-Students---PHP-Project/HEAD/welcomestudent.php --------------------------------------------------------------------------------