I'm having issues getting to my form because of the parse error on line 20 can anyone help me out here? Because I'm trying to get to my form to test it whether it connects to my data base and can insert the data I put into it.
<?php
$server = "localhost";
$database = "music database";
$user = "root";
$pass = "root";
$songtitle = $_POST["songtitle"];
$songartist = $_POST["songartist"];
$songalbum = $_POST["songalbum"];
$yearreleased = $_POST["yearreleased"];
$monthplayed = $_POST["month_played"];
$dayplayed = $_POST["dayplayed"];
$dateplayed = $_POST["dateplayed"];
$timeplayed = $_POST["timeplayed"];
$connection = mysqli_connect($server, $user, $pass, $database);
var db = Database.Open("music database");
var insertCommand = "INSERT INTO `month 1` (`Song Title`, `Song Artist`, `Song Album`, `Year Released`, `Month Played`, `Day of the Week Played`, `Date Played`, `Time Played`) VALUES ($songtitle, $songartist, $songalbum, $yearreleased, $monthplayed, $dayplayed $dateplayed, $timeplayed)";
db.Execute(insertCommand, songtitle, songartist, songalbum, yearreleased, monthplayed, dayplayed, dateplayed, timeplayed);
Response.Redirect("~/music database");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Music Input Form</title>
</head>
<body>
<header><h1><center>Music Data</center></h1></header>
<form method="post" action="insert.php">
<fieldset>
<center>Song Title: <input type = "text" name = "songtitle" id = "songtitle"><br><br></center>
<center>Song Artist: <input type = "text" name = "songartist" id = "songartist"><br><br></center>
<center>Song Album: <input type = "text" name = "songalbum" id = "songalbum"><br><br></center>
<center>Year Released: <input type = "year" name = "yearreleased" id = "yearreleased"><br><br></center>
<center>Month Played: <input type = "text" name = "monthplayed" id = "monthplayed"><br><br></center>
<center>Day of the Week Played: <input type = "text" name = "dayplayed" id = "dayplayed"><br><br></center>
<center>Date Played: <input type = "date" name = "dateplayed" id = "dateplayed"><br><br></center>
<center>Time Played: <input type = "time" name = "timeplayed" id = "timeplayed"><br><br></center>
<center><input type = "submit" value = "Add Song"><input type = "reset" value = "Clear"></center>
</fieldset>
</form>
</body>
</html>