Q.3. Given the following form in HTML code. Create a PHP file review.php that will read the review sent through the HTML form and write it in a text file review.txt (PLO: GA5. CLO: 1, C2-5 Marks) PHP Hints: fopen, fwrite, fgets, fread, fclose.
Welcome to our Feedback page
Name:
Review:
Submit
<!DOCTYPE html>
<html>
<body>
<p>Welcome to our feedback page</p>
<form method="post" action="<?php $_SERVER['PHP_SELF']; ?>">
Name: <input type="text" name="username"><br>
Review: <input type="text" name="review"><br>
<input type="submit">
</form>
</body>
</html>