-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.php
More file actions
executable file
·83 lines (81 loc) · 2.06 KB
/
Copy pathselect.php
File metadata and controls
executable file
·83 lines (81 loc) · 2.06 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
<html>
<head>
<style type="text/css">
h4{
text-align: center;
font-size: 20px;
letter-spacing: 3px;
font-family: "Comic Sans MS", cursive, sans-serif;
font-weight: bold;
text-align: center;
}
p {
text-indent: 50px;
text-align: center;
letter-spacing: 3px;
font-family: "Comic Sans MS", cursive, sans-serif;
}
.ar2{
float: right;
height: 200px;
width: 300px;
margin-top: 10px;
padding: 10px;
border-color: #b86d29;
border-width: 2px;
border-style: outset;
border-radius: 20px;
}
.m{
position: absolute;
top: 25%;
left: 25%;
right: 25%;
bottom: 25%;
}
button{
text-decoration: none;
float: left;
line-height: 40px;
text-align: center;
background-color: #ff9933;
font-size: 20px;
color: #ffffff;
font-family: arial, verdana, sans-serif;
border-radius: 10px;
width: 300px;
}
</style>
</head>
<body>
<?php
$s=$_POST["hidden"];
?>
<?php
$s1=$_POST["hidden1"];
?>
<div class="m" align="center"><table>
<tr><td><div class="ar2">
<h4>Donor</h4>
<p></p><br><br><br>
<?php
if($s=="fund"){
echo "<form action='/17bcs048/PaytmKit/pay.php' method='post'><button>Donor</button><input type='hidden' value=$s name='hidden'></form>";
}
else{echo "<form action='$s' method='post'><button>Donor</button><input type='hidden' value=$s name='hidden'></form>";}
?>
</div></td>
<td><div class="ar2">
<h4>Acceptor</h4>
<p></p><br><br><br>
<?php
if($s1=="organacc"){
echo "<form action='hosplogin.php' method='post'><button>Acceptor</button><input type='hidden' value=$s1 name='hidden'></form>";
}else{
echo "<form action='acc.php' method='post'><button>Acceptor</button><input type='hidden' value=$s1 name='hidden'></form>";
}
?>
</div></td></tr>
</table></div>
</body>
</html>