-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 1.92 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 1.92 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
#cs{ width: 15%; height: 100%; background:green; }
#bl{ width: 100%; height: 30%; background:blue; }
</style>
<meta name="title" content="Bollywood | Bollywood News | wallpapers | gossips" />
<meta name="description" content="Bollywood News - Welcome to Bollywood Buzz, India's premier Bollywood portal "/>
<?php
if(isset($_GET['login']))
{$ui=$_GET['uid'];
$pw=$_GET['pwd'];
$s="select * from user_master where user_id='".$ui."' and password='".$pw."'";
$con=mysql_connect('localhost','root','');
mysql_select_db('ols',$con);
$r=mysql_query($s);
if($arr=mysql_fetch_array($r))
{setcookie('u',$arr['user_id'],time()+3600);
header("location:userhome.php");
}
}
?>
<b> <title>BOLLYWOOD BUZZ</title></b>
</head>
<body background="im/sd.JPG" background-size: cover; >
<h1><u><mark>BOLLYWOOD BUZZ</mark></u></h1>
<h2>One stop for all bollywood news</h2>
<div id="cs">
<form method="get">
<font size="+1.5">
<b> user id :</b><input name="uid" type="text" />
<br/>
<b> password:</b><input name="pwd" type="password" />
<br/>
<input name="login" type="submit" value="login" />
</font>
</form>
</div>
<b>
<font size="+1.5">
<a href="forgot.php">forgot pwd</a>
<a href="reg.php">new user</a>
</font>
</b>
<hr/>
<h3><marquee behavior="alternate"><font color="#FF0033"><div id="bl"><i>India's leading online bollywood portal</i></div></font></marquee></h3>
<hr/>
<br/>
<br/>
<font color="#33FF00" size="+3"><b>
<pre>
REGISTER IN FEW SECONDS..
AND BROWSE IN WORLD OF CINEMA
</pre>
</b></font>
<br/>
<br/>
<?php
include("counter.php");
?>
<b><font color="#000066">No of visitors visited this page: </font></b><?php echo $visitors;?>
<br/>
<a href="contact.php"><b>contact us</b></a>
<br/>
</body>
</html>