The code below seem to have worked at some point to write the information from the strings into the database, but now, I don't know what happened, all it does is write the date and no other info. Can someone please give me some feedback as to why this is not working?
<?php
$dbHost = "localhost";
$dbUser = "sssss";
$dbPass = "********";
$link = @mysql_connect($dbHost, $dbUser, $dbPass);
$dbName = "vvvvvvv";
$db = mysql_select_db($dbName, $link) or die("couldn't select database");
$date = date("Y-m-d");
$firstname = $POST["First_Name"];
$lastname = $POST["Last_Name"];
$address = $POST["Address1"];
$city = $POST["City"];
$statezip = $POST["State_Zip"];
$phone = $POST["Phone"];
$album = $_POST["album"];
$query = "INSERT INTO orders (date, firstname, lastname, address, city, statezip, phone, album)
VALUES ('$date','$firstname','$lastname','$address','$city','$statezip','$phone','$album')";
mysql_query($query,$link)or die(mysql_error() .'<hr />'.$query.'<hr />');
?>