Challenge 1 — Solution Task: Write a script that takes a $_POST['feedback'] value containing HTML special characters (test with a string like "Great site!"), and echoes it twice — once unescaped (commented out as unsafe), and once safely with htmlspecialchars(). Explain in a comment what would happen if the unsafe version were used with a real " as their // feedback, the unsafe (unescaped) version would echo that text // directly into the page's HTML - and because