-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
70 lines (65 loc) · 2.32 KB
/
Copy pathabout.php
File metadata and controls
70 lines (65 loc) · 2.32 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ABOUT : MDBMS</title>
<script type="text/javascript">
function showResult(str)
{
if (str.length==0)
{
document.getElementById("livesearch").innerHTML="";
document.getElementById("livesearch").style.border="0px";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("livesearch").innerHTML=xmlhttp.responseText;
document.getElementById("livesearch").style.border="1px solid #A5ACB2";
}
}
xmlhttp.open("GET","querysearch.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<div class=about>
<style type="text/css">
div.about
{ text-align:center;
position:absolute;
left:300px;
top:100px;
font-color:blue;
}
</style>
This is Movie Database Management System (MDBMS). It enables the users to view their favourite movies and all the information regarding them. The movies are stored in a database and are updated regularly by the administrator. A user can also rate the movies according to the various parameters such as cinematography, direction..etc. Users can also give the movie a Star Rating (SR) by simply clicking highlighting the desired number of stars on the rating widget. Comprehensive cast information is also provided by the system. Each movie page also has a 'movie suggestion' option, whereby a list of movies most likely to be viewed by the user is presented to them. A user can also write a review regarding a movie he wants to rate.The trailers of select movies are also made available to them based on thier availability.
This MDBMS was created by Pritish Kishore Kumar, Ramees Roshan, and Rajiv Shaji Paul
For queries, please search below:<br/><br/>
<div class=query>
<style type="text/css">
div.query
{ left:100px;
top:50px;
position:relative;
}
</style>
<p><b>SEARCH:</b></p>
<form>
<input type="text" size="30" onkeyup="showResult(this.value)" />
<div id="livesearch"></div>
</form>
</div>
</body>
</html>