How do you write a PHP script that produces the current resultsof the survey from the HTML script below?
.html
<!doctype html public “-//w3c//dtd html 4.0transitional//en”>
<html>
<head>
<title>Song Survey</title>
</head>
<body>
<form method=”post” action=”http://localhost/lab/lab14.php”><br />
<h3>Enter The Date</h3>
<table>
<tr>
<td>Name Of The Song:</td>
<td><input type=”text” name=”SongName”size=”30″></td>
</tr>
<tr>
<td>Name Of The Composer:</td>
<td><input type=”text” name=”CName”></td>
</tr>
<tr>
<td>Name Of The Singer:</td>
<td><input type=”text” name=”Singer”></td>
</tr>
<tr>
<td><input type=”submit”value=”Submit”></td>
</tr>
</table>
</form>
</body>
</html>
Expert Answer
Answer to How do you write a PHP script that produces the current results of the survey from the HTML script below? .html Song Sur…