forked from Encrypt-S/navpi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.php
More file actions
executable file
·25 lines (22 loc) · 809 Bytes
/
comment.php
File metadata and controls
executable file
·25 lines (22 loc) · 809 Bytes
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
<?php
include ("header.php");
include ("pass.php");
$txid = $_POST['txid'];
?>
<center><p>Add a comment to the transaction <?php echo $_POST['txid']; ?>
<div class="panel panel-default">
<table class="table-hover table-condensed table-bordered table">
<form action="addcomment" method="POST"><input type="hidden">
<tr>
<td><center><b>Comment to add:</b></center></td>
<td><input class="form-control" type="text" name="comment"></td>
</tr>
<tr>
<td> </td>
<td><button class='btn btn-default' type="submit" name='txid' value=<?php echo $txid; ?>><b>Add Comment</b></button></td>
</tr>
</form>
</table>
</div>
</div>
<?php include ("footer.php"); ?>