-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreplymsg.php
17 lines (14 loc) · 978 Bytes
/
replymsg.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="reply" class="dropup">
<button class="btn btn-default dropbtn dropdown-toggle" type="button" data-toggle="dropdown" id="repmsg" name="btnreply">
Reply</button>
<div id="reply" class="dropdown-menu pull-right img-responsive">
<table class="loggedin" align="center" border="0">
<tr><td>
<textarea id="reply" name="msgrep" placeholder="Your Message..." required="required"></textarea>
</td></tr>
<tr><td>
<button type="submit" name="btn_reply" value="<?php echo $row['id']?>">Reply</button>
</td></tr>
</table>
</div>
</div>