Skip to content

Commit 8c0b1a4

Browse files
committed
Full Complete Web Site and Student Management System
This is a Full Complete Web Site and Student Management System for a University.
1 parent a12b55f commit 8c0b1a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+9815
-0
lines changed

New.sql

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
2+
-- phpMyAdmin SQL Dump
3+
-- version 2.11.4
4+
-- http://www.phpmyadmin.net
5+
--
6+
-- Host: localhost
7+
-- Generation Time: Aug 10, 2016 at 04:07 AM
8+
-- Server version: 5.1.57
9+
-- PHP Version: 5.2.17
10+
11+
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
12+
13+
--
14+
-- Database: `a3075631_slsoc`
15+
--
16+
17+
-- --------------------------------------------------------
18+
19+
--
20+
-- Table structure for table `academic`
21+
--
22+
23+
CREATE TABLE `academic` (
24+
`id` int(11) NOT NULL AUTO_INCREMENT,
25+
`name` varchar(100) COLLATE latin1_general_ci NOT NULL,
26+
`username` varchar(100) COLLATE latin1_general_ci NOT NULL,
27+
`pw` varchar(100) COLLATE latin1_general_ci NOT NULL,
28+
`activated` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '1',
29+
PRIMARY KEY (`id`)
30+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=3 ;
31+
32+
--
33+
-- Dumping data for table `academic`
34+
--
35+
36+
INSERT INTO `academic` VALUES(1, 'Head Of SLSOC', 'head_slsoc_1', '123456', '1');
37+
INSERT INTO `academic` VALUES(2, 'director', 'director_slsoc_2', '123456mail', '1');
38+
39+
-- --------------------------------------------------------
40+
41+
--
42+
-- Table structure for table `apply`
43+
--
44+
45+
CREATE TABLE `apply` (
46+
`id` int(11) NOT NULL AUTO_INCREMENT,
47+
`fname` varchar(100) COLLATE latin1_general_ci NOT NULL,
48+
`lname` varchar(100) COLLATE latin1_general_ci NOT NULL,
49+
`adone` varchar(255) COLLATE latin1_general_ci NOT NULL,
50+
`adtwo` varchar(255) COLLATE latin1_general_ci NOT NULL,
51+
`city` text COLLATE latin1_general_ci NOT NULL,
52+
`country` text COLLATE latin1_general_ci NOT NULL,
53+
`num` varchar(20) COLLATE latin1_general_ci NOT NULL,
54+
`email` varchar(20) COLLATE latin1_general_ci NOT NULL,
55+
`gender` varchar(10) COLLATE latin1_general_ci NOT NULL,
56+
`year` varchar(100) COLLATE latin1_general_ci NOT NULL,
57+
`month` varchar(100) COLLATE latin1_general_ci NOT NULL,
58+
`date` varchar(100) COLLATE latin1_general_ci NOT NULL,
59+
PRIMARY KEY (`id`)
60+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=10 ;
61+
62+
--
63+
-- Dumping data for table `apply`
64+
--
65+
66+
INSERT INTO `apply` VALUES(8, 'Kisalka', 'Rajapaksha', '23/8 , Kurunduwaththa Rd ,', '23/8 , Kurunduwaththa Rd ,', 'Hikkaduwa', 'Sri Lanka', '0788510434', '[email protected]', 'male', '2000', 'May', '06');
67+
68+
-- --------------------------------------------------------
69+
70+
--
71+
-- Table structure for table `contact`
72+
--
73+
74+
CREATE TABLE `contact` (
75+
`id` int(11) NOT NULL AUTO_INCREMENT,
76+
`name` varchar(100) COLLATE latin1_general_ci NOT NULL,
77+
`email` varchar(50) COLLATE latin1_general_ci NOT NULL,
78+
`num` varchar(20) COLLATE latin1_general_ci NOT NULL,
79+
`msg` varchar(255) COLLATE latin1_general_ci NOT NULL,
80+
PRIMARY KEY (`id`)
81+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=3 ;
82+
83+
--
84+
-- Dumping data for table `contact`
85+
--
86+
87+
INSERT INTO `contact` VALUES(2, 'Kisalka Rajapaksha', '[email protected]', '0788510434', 'Test 1');
88+
89+
-- --------------------------------------------------------
90+
91+
--
92+
-- Table structure for table `stureg`
93+
--
94+
95+
CREATE TABLE `stureg` (
96+
`id` int(11) NOT NULL AUTO_INCREMENT,
97+
`fname` varchar(100) COLLATE latin1_general_ci NOT NULL,
98+
`lname` varchar(100) COLLATE latin1_general_ci NOT NULL,
99+
`nic` varchar(20) COLLATE latin1_general_ci NOT NULL,
100+
`slsocid` varchar(20) COLLATE latin1_general_ci NOT NULL,
101+
`adone` varchar(255) COLLATE latin1_general_ci NOT NULL,
102+
`adtwo` varchar(255) COLLATE latin1_general_ci NOT NULL,
103+
`city` text COLLATE latin1_general_ci NOT NULL,
104+
`country` text COLLATE latin1_general_ci NOT NULL,
105+
`num` varchar(20) COLLATE latin1_general_ci NOT NULL,
106+
`email` varchar(20) COLLATE latin1_general_ci NOT NULL,
107+
`username` varchar(100) COLLATE latin1_general_ci NOT NULL,
108+
`pw` varchar(100) COLLATE latin1_general_ci NOT NULL,
109+
`gender` varchar(20) COLLATE latin1_general_ci NOT NULL,
110+
`year` varchar(100) COLLATE latin1_general_ci NOT NULL,
111+
`month` varchar(100) COLLATE latin1_general_ci NOT NULL,
112+
`date` varchar(100) COLLATE latin1_general_ci NOT NULL,
113+
`activated` enum('0','1') COLLATE latin1_general_ci NOT NULL DEFAULT '1',
114+
PRIMARY KEY (`id`)
115+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
116+
117+
--
118+
-- Dumping data for table `stureg`
119+
--
120+
121+
INSERT INTO `stureg` VALUES(1, 'Kisalka', 'Rajapaksha', '960863801V', '0', '23/8 , Kurunduwaththa Rd ,', 'Walauwaththa', 'Hikkaduwa', 'Sri Lanka', '0788510434', '[email protected]', '960863801V', '123456mail', 'male', '1996', 'March', '26', '1');

SLSOC Biulding.jpg

93.8 KB
Loading

SLSOC.jpg

101 KB
Loading

SLSOCBannerBox.jpg

48.9 KB
Loading

SLSOCBannerBoxStuArea.jpg

101 KB
Loading

SLSOCBannerStuReg.jpg

108 KB
Loading

SOC 1 (2).jpg

269 KB
Loading

SOC Building.jpg

93.8 KB
Loading

SOC CNet.jpg

197 KB
Loading

SOC CSci.jpg

130 KB
Loading

SOC CSec.jpg

767 KB
Loading

SOC E 2.jpg

491 KB
Loading

SOC E 3.jpg

25.6 KB
Loading

SOC E 4.jpg

1.05 MB
Loading

SOC E 5.jpg

299 KB
Loading

SOC E Learning.png

90.4 KB
Loading

SOC Lab 3.jpg

53.5 KB
Loading

SOC Lab 4.jpg

269 KB
Loading

SOC Lab 5.jpg

345 KB
Loading

SOC Lab 6.jpg

43.1 KB
Loading

SOC Lab n.jpg

24.7 KB
Loading

SOC Lec 1.jpg

34.9 KB
Loading

SOC Man.jpg

10 KB
Loading

SOC Woman.jpg

8.63 KB
Loading

about.php

+216
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
<html>
2+
<title>Sri Lanka School Of Computing</title>
3+
<head>
4+
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
5+
<link rel="icon" href="SLSOC.jpg" type="image/gif" sizes="16x16">
6+
<link rel="stylesheet" type="text/css" href="homecss.css">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<style>
10+
11+
body {
12+
background-color: #e3e7f0;
13+
height:auto;
14+
width:1200px;
15+
margin-left:75px;
16+
}
17+
18+
.content
19+
{
20+
height:auto;
21+
margin-left:0px;
22+
margin-bottom:0px;
23+
width:1200px;
24+
background-color: #FFFFFF;
25+
}
26+
27+
.about{
28+
margin-left:50px;
29+
margin-right:50px;
30+
font-family: Times New Roman;
31+
line-height: 180%;
32+
font-size:135%;
33+
text-align: left;
34+
color:#353c47;
35+
}
36+
37+
</style>
38+
39+
<!-- Start Of Back To Top -->
40+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
41+
<script type="text/javascript" >
42+
var scrolltotop={
43+
setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
44+
controlHTML: '<img src="http://4.bp.blogspot.com/-FF9tEBUa6Lk/UtpgnHSpEaI/AAAAAAAACVA/-CrIj2AigCQ/s1600/Back+To+Top+-+1.png"/>',
45+
controlattrs: {offsetx:5, offsety:5},
46+
anchorkeyword: '#top',
47+
state: {isvisible:false, shouldvisible:false},
48+
scrollup:function(){
49+
if (!this.cssfixedsupport)
50+
this.$control.css({opacity:0})
51+
var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
52+
if (typeof dest=="string" && jQuery('#'+dest).length==1)
53+
dest=jQuery('#'+dest).offset().top
54+
else
55+
dest=0
56+
this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
57+
},
58+
keepfixed:function(){
59+
var $window=jQuery(window)
60+
var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
61+
var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
62+
this.$control.css({left:controlx+'px', top:controly+'px'})
63+
},
64+
togglecontrol:function(){
65+
var scrolltop=jQuery(window).scrollTop()
66+
if (!this.cssfixedsupport)
67+
this.keepfixed()
68+
this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
69+
if (this.state.shouldvisible && !this.state.isvisible){
70+
this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
71+
this.state.isvisible=true
72+
}
73+
else if (this.state.shouldvisible==false && this.state.isvisible){
74+
this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
75+
this.state.isvisible=false
76+
}
77+
},
78+
init:function(){
79+
jQuery(document).ready(function($){
80+
var mainobj=scrolltotop
81+
var iebrws=document.all
82+
mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" &&
83+
window.XMLHttpRequest
84+
mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
85+
mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
86+
.css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety,
87+
right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
88+
.attr({title:'Scroll Back to Top'})
89+
.click(function(){mainobj.scrollup(); return false})
90+
.appendTo('body')
91+
if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='')
92+
mainobj.$control.css({width:mainobj.$control.width()})
93+
mainobj.togglecontrol()
94+
$('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
95+
mainobj.scrollup()
96+
return false
97+
})
98+
$(window).bind('scroll resize', function(e){
99+
mainobj.togglecontrol()
100+
})
101+
})
102+
}
103+
}
104+
scrolltotop.init()
105+
</script> <!-- End Of Back To Top -->
106+
107+
</head>
108+
109+
<body>
110+
<div class="content">
111+
112+
<div id="container">
113+
114+
<div id ="header">
115+
<center><a href="home.php"><img src="SLSOCBannerBox.jpg" alt="SLSOC_Logo" width="1200px"></a></center>
116+
</div>
117+
118+
<ul>
119+
<li><a class="active" href="home.php">Home</a></li>
120+
121+
<li class="dropdown">
122+
<a href="#" class="dropbtn">About US</a>
123+
<div class="dropdown-content">
124+
<a href="about.php">About SLSOC</a>
125+
<a href="lecturerpanel.php">Lecturer Panel</a>
126+
</div>
127+
</li>
128+
129+
<li class="dropdown">
130+
<a href="#" class="dropbtn">Units</a>
131+
<div class="dropdown-content">
132+
<a href="se.php">Software Engineering</a>
133+
<a href="csec.php">Computer Security</a>
134+
<a href="cn.php">Computer Network</a>
135+
<a href="csci.php">Computer Science</a>
136+
</div>
137+
</li>
138+
139+
<li><a href="stulogin.php">Student Area</a></li>
140+
141+
<li><a href="contact.php">Contact</a></li>
142+
143+
<li style="float:right"><a href="apply.php" class="button" target="_blank">Apply Now</a></li>
144+
</ul>
145+
146+
<!-- End Of The Top Part Of The Page -->
147+
148+
<br>
149+
150+
<p class="about">
151+
152+
<img src="SLSOC Biulding.jpg" style="float:right"></img>
153+
154+
Sri Lanka School Of Computing has one of the longest-established Computer Science departments in the country. Formerly known as the SL Computing Laboratory, it is home to a community of world-wide research and teaching. Research activities encompass core Computer Science, as well as computational biology, information systems, software verification and software engineering. The department is home to undergraduates, full-time and part-time Master's students, and has a strong doctoral programme.<br><br>
155+
156+
Sri Lanka School Of Computing Laboratory was set up in 1998 under the direction of <br> Mr. Somasiri Kahandagamage. Within a short time from its foundation it was providing undergraduate lectures in the Faculty of Mathematics, training a number of research students, and running a mainframe computer which provided a computing service to the University generally. During this initial period the research efforts of the Laboratory were directed almost entirely towards analysis and led to the establishment of the Analysis Group.<br><br>
157+
158+
We are Providing BSc (Honours) Software Engineering , BSc (Honours) Computer Security , BSc (Honours) Computer Networks and BSc (Honours) Computer Science Degrees. All of these Degrees are approved by University Grants Commission (UGC).
159+
And we have great qualified Lecturer panel. <br>
160+
161+
<center><iframe width="854" height="480" src="https://www.youtube.com/embed/Lak5IlyQzL0" frameborder="0" allowfullscreen></iframe></center>
162+
163+
</p> <!-- End Of The About Class -->
164+
<br>
165+
<!-- Below Part Of The Page -->
166+
167+
<!-- <div id ="left"></div>
168+
<div id ="right"></div>
169+
<div id ="center"></div> -->
170+
171+
<div id ="footer">
172+
173+
<table width="1168px">
174+
<tr>
175+
<th><h2><u>Looking For Us</u></h2></th>
176+
<th><h2><u>Shortcuts</u></h2></th>
177+
<th><h2><u>Find Us On</u></h2></th>
178+
</tr>
179+
<tr>
180+
<td><p class="address">442 Galle Road<br>
181+
Colombo 03<br>
182+
Sri Lanka<br>
183+
184+
Tel: <a href="tel:+(94) 112565511">+(94) 112565511</a><br>
185+
Fax: <a href="tel:+(94) 112565594">+(94) 112565594</a><br>
186+
Email: <a href="mailto:[email protected]">[email protected]</a></td>
187+
188+
<td>
189+
<a href="home.php">* Home</a><br>
190+
<a href="about.php">* About SLSOC</a><br>
191+
<a href="stulogin.php">* Student System<br></a>
192+
<a href="contact.php">* Contact Us<br></a>
193+
</td>
194+
195+
<td><a href="http://www.facebook.com" target="_blank" class="icon-button facebook"><i class="icon-facebook"></i><span></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Facebook</a><br>
196+
197+
<a href="https://twitter.com" target="_blank" class="icon-button twitter"><i class="icon-twitter"></i><span></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Twitter</a><br>
198+
199+
<a href="http://www.youtube.com" target="_blank" class="icon-button google-plus"><i class="icon-google-plus"></i><span></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Youtube</a>
200+
</td>
201+
202+
</tr>
203+
</table></p>
204+
205+
<hr> <p class="copyright">
206+
Copyright &copy; 2016 Sri Lanka School Of Computing - SLSOC.
207+
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
208+
Designed & Developed By <a href="http://allsevennet.blogspot.com/" target="_blank">Fit Swift GaNg / Seven Net</a></p>
209+
210+
</div> <!-- End Of The Footer -->
211+
212+
</div> <!-- End Of ID Container CSS / White Background -->
213+
214+
</div> <!--End Of Body Class Content CSS-->
215+
</body>
216+
</html>

0 commit comments

Comments
 (0)