[ create a new paste ] login | about

Link: http://codepad.org/b9pXuNl0    [ raw code | output | fork ]

PHP, pasted on Jun 26:
1
2
3
4
5
6
7
8
9
10
11
12
<?php
setcookie("nick",$nick); 
?> 
<html> 
<title>My Chat Room</title>

<frameset rows="80%,*"> 
<frame src="Display.php" name="display">
<frame src="Speak.php" name="speak"> 
</frameset> 
 
</html>


Output:
1
2
3
4
5
6
7
8
9
10
 
<html> 
<title>My Chat Room</title>

<frameset rows="80%,*"> 
<frame src="Display.php" name="display">
<frame src="Speak.php" name="speak"> 
</frameset> 
 
</html>


Create a new paste based on this one


Comments: