-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz2.php
105 lines (104 loc) · 2.91 KB
/
quiz2.php
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Online Quiz</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="quiz.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style9 {
color: #000099;
font-weight: bold;
}
.style10 {
color: #330066;
font-weight: bold;
}
-->
</style>
</head>
<body>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style>
<table border="0" width="100%" cellspacing="0" cellpadding="0" background="image/topbkg.jpg">
<tr>
<td width="90%" valign="top">
<!--You can modify the text, color, size, number of loops and more on the flash header by editing the text file (fence.txt) included in the zip file.-->
<div align="left"><object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,2,0
width=500
height=68>
<param name=movie value=image/fence.swf>
<param name=quality value=high>
<param name=BGCOLOR value=#000000>
<param name=SCALE value=showall>
<param name=wmode value=transparent>
<embed src=image/fence.swf
quality=high
pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash
width=500
height=68
bgcolor=#000000
scale= showall>
</embed>
</object></div></td>
<td width="10%">
<img border="0" src="image/topright.jpg" width="203" height="68" align="right"></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#000000" background="img/blackbar.jpg">
<tr>
<td width="100%"><img border="0" src="image/blackbar.jpg" width="89" height="15"></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="89%"><span class="style9">WelCome Dhaval</span></td>
<td width="11%"><span class="style10">Signout</span></td>
</tr>
</table>
<strong>PHP Test
</strong>
<table width="304" border="0" align="center">
<tr>
<td width="298"><div align="left"><strong> Q-1</strong> <strong>: What is not Php Element?</strong></div></td>
</tr>
<tr>
<td>
<div align="left">
<input type=radio name=ans value=1>
<strong> Post</strong></div></td>
</tr>
<tr>
<td>
<div align="left">
<input type=radio name=ans value=2>
<strong> Get </strong></div></td>
</tr>
<tr>
<td>
<div align="left">
<input type=radio name=ans value=3>
<strong>Session</strong></div></td>
</tr>
<tr>
<td>
<div align="left">
<input type=radio name=ans value=4>
<strong> Cookie </strong></div></td>
</tr>
<tr>
<td>
<div align="center">
<input type=submit name=submit value='Next Question'>
</div></td>
</tr>
</table>
</body>
</html>