We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f9788 commit f964316Copy full SHA for f964316
1 file changed
index.html
@@ -1,3 +1,8 @@
1
+<?php
2
+require_once(decorator.php);
3
+$dec = new Decorator();
4
+?>
5
+
6
<!DOCTYPE html>
7
<html>
8
<head>
@@ -15,7 +20,7 @@ <h1>Null's Text Decorator</h1>
15
20
<br />
16
21
Enter your text here → <input type=\"text\" name=\"input\" value=\"". $_POST["input"] ."\" />
17
22
18
- Circled text: <input type=\"text\" name=\"cool1\" value=\"". /* OUTPUT */ ."\" />
23
+ Circled text: <input type=\"text\" name=\"cool1\" value=\"". dec.($_POST["input"]) ."\" />
19
24
25
<input type=\"submit\" name=\"step2\" />
26
</form>
0 commit comments