Initial commit
[2ch-be.git] / dev-test / bak / messaging / compose.php
blobcfe399e20280517ddc11297bc537c669e5bfa063
1 <?php
2 $uid = trim($_GET['i']);
3 ?>
4 <html>
5 <head>
7 </head>
9 <body>
10 <form method="post" action="msg.php">
11 <input type="hidden" value="<?php echo $uid ?>" name="zxcvbnm"><!-- needs enc -->
12 Email:<br>
13 <input type="text" name="id"><br><br>
15 Subject:<br>
16 <input type="text" name="subj"><br><br>
18 Message:<br>
19 <textarea rows="5" name="msg"></textarea><br><br>
20 <input type="submit" name="submit" value="Submit">
21 </form>
22 </body>
23 </html>