forked from AmateurIndian/Vapor_Social_Gaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.php
31 lines (24 loc) · 896 Bytes
/
message.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
<!DOCTYPE html>
<html>
<head>
<title>Vapour</title>
</head>
<body>
<?php
$userid =$_GET['id'];
$friendid =$_GET['friendid'];
$friendname = $_GET['friendname'];
?>
<font>
<center><h2>Compose Message</h2></center>
</font>
<h2>To: <?php echo $friendname ?><h2>
<form action="sendmessage.php?edit=Y&id=<?php echo $userid ?>&friendid=<?php echo $friendid?>&friendname=<?php echo $friendname?>" method="POST">
Message:<input type="text" name="message"><br><br>
<input type="submit" value="Send Message" name="submit">
</form><br><br>
<form action='home.php?edit=Y&id=<?php echo $userid ?>' method='POST'>
<input type='submit' value='Home' name='gift'>
</form>
</body>
</html>