Sorry, you must input a singer name. Please go back and try again.

"; die(); } navbar("index.php"); $entries = null; $wherestring = null; $artist = ''; $title = ''; $sql = "SELECT artist,title FROM songdb WHERE song_id = $songid"; foreach ($db->query($sql) as $row) { $artist = $row['artist']; $title = $row['title']; } $stmt = $db->prepare("INSERT INTO requests (singer,artist,title) VALUES(:singer, :artist, :title)"); $stmt->execute(array(":singer" => $singer, ":artist" => $artist, ":title" => $title)); newSerial(); echo "

Song: $artist - $title

Submitted for singer: $singer


Please press back to return to the main screen

"; sitefooter(); ?>