-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
120 lines (98 loc) · 5.29 KB
/
index.php
File metadata and controls
120 lines (98 loc) · 5.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>slc supplementary result 2072</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css?ts=<?php echo time();?>" />
<link href="http://edukhabar.com//templates/ctrlstheme/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
</head>
<body>
<style>
#menu ul li{float:left;}
#menu li a{display:block; padding:14px; color:#FFF; background:#009a9a; text-decoration:none;}
#menu li a:hover{text-decoration:underline; }
</style>
<?php
require_once('owc-cms/connect/connect.php');
require_once('owc-cms/gallery/gallery.php');
require_once('owc-cms/image/image.php');
?>
<div id="slc-wrapper" style="margin:0 auto; width:1000px;">
<div id="body_area" style="width: 100%;">
<div id="header" style="background:#009a9a; height:100px;">
<div id="logo">
<img src="images/logo.png" alt="Edukhabar" />
</div>
<div id="menu">
<ul>
<li><a href="http://edukhabar.com/">होमपेज</a></li>
<li><a href="http://edukhabar.com/2014-10-24-08-14-29">खबर/फिचर</a></li>
<li><a href="http://edukhabar.com/int-edu">विदेशमा शिक्षा</a></li>
<li><a href="http://edukhabar.com/interview">अन्तर्वार्ता </a></li>
<li><a href="http://edukhabar.com/blog">विचार बिमर्श </a></li>
<li><a href="http://edukhabar.com/good-who-good">राम्रा कसरी राम्रा</a></li>
<li><a href="http://edukhabar.com/bahas">बहस</a></li>
<li><a href="http://edukhabar.com/teachers">गुरुबा गुरुआमा</a></li>
<li><a href="http://edukhabar.com/other">अन्तैवाट</a></li>
</ul>
</div>
</div>
<div id="advertise1" style="clear:both;">
<?php
$slides = $Image->getListParentWithLimitsByGalleryIdthree(4);
while($ad = $Connect->fetchArray($slides,MYSQLI_ASSOC))
{
?>
<ul>
<li><a href="<?php echo $ad['url']; ?>" target="_blank" title="<?php echo $ad['title']; ?>"> <img src="uploads/gallerys/images/<?php echo $ad['id'].'.'.$ad['extension']; ?>" alt="<?php echo $ad['title']; ?>" title="<?php echo $ad['title']; ?>" width="235" height="130" /> </a></li>
</ul>
<?php
}
?>
</div>
<div id="result_display" style="width: 100%;" >
<div id="result_form">
<h4 style="text-align:center;font-size:190%;color:#0B5501;margin:5px 0;">Check Your +2 Result...</h4>
<div class="slc-form">
<form method="post">
<p>eg : 0012301 </p>
<p><input type="text" id="symbolNo" name="symbolNo" class="search" placeholder=" Type your Symbol no. here" value="<?php if(isset($_POST['symbolNo'])){echo $_POST['symbolNo']; }else {echo '';}?>" autofocus/></p>
<p class="submit" onclick="searchResult(); return false;"> <input type="submit" value=" View Result " class="button" name="submit" /></p>
</form>
</div><!-- div class slc-form -->
<div id="result_display_area">
<script>
function searchResult() {
var symbolNo= $("#symbolNo").val();
var request = $.ajax({
url: "ajax.php",
type: "GET",
data: {
symbolNo: symbolNo
},
dataType: "html"
});
request.done(function (msg) {
$(".pass").html(msg);
});
}
</script>
<p class="pass">Good Luck To Your +2 Result .<br />
Edukhabar - Lalitpur</p>
</div>
</div>
</div><!--result_diplay ends here-->
<div id="footer" style="background:#888; color:#DDD;">
<p style="text-align:center;">Powered By <a href="http://ourwebcreation.com" target="_blank" style="color:#DDD; text-decoration:none;">Ourwebcreation PVT LTD</a></p>
</div>
</div><!-- body area ends here-->
<!-- div id="advertise2">
<p>For Full Marksheet</p>
<p><a href="http://www.soce.gov.np" target="_blank">www.soce.gov.np</a></p>
<p><a href="http://www.slc.ntc.net.np" target="_blank">www.slc.ntc.net.np</a></p>
</div -->
</div><!-- div id wrapper ends here -->
</body>
</html>