- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
Latest commit
24 lines (24 loc) · 649 Bytes
/
Copy pathindex.php
File metadata and controls
24 lines (24 loc) · 649 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
<?php
include'codeComment.php'
?>
<!DOCTYPE html>
<html>
<head>
<title>Test zamiany html na text</title>
<meta charset="UTF-8">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="codeComment.js"></script>
</head>
<body>
<form action="" method="POST">
Put your comment with html or another code between <code> tags.
<textarea id="t" name="a"></textarea>
<input type="submit" name="g" value="Click"/>
</form>
<hr>
<?phpif(isset($text)){
echo$text ;
}
?>
</body>
</html>