This is my code. I keep getting a 500 internal server error when trying to parse it, its loaded after the form is completed and the button is pressed all information is sent to it by POST, I have no idea whats causing this. I'm kinda newish to php.
define('DB_NAME', 'reboot');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD,DB_NAME);
$value = $_POST['user_uploaded_files'];
$value = $_POST['Developer?'];
$value = $_POST['size'];
$value = $_POST['Email'];
$value = $_POST['url'];
$value = $_POST['title']
{ mysql_query($sql) = "INSERT INTO links (user_uploaded_files,
developer_status, size, Email
url,title) VALUES ('$value', '$value2',
'$value3', '$value4', '$value5', '$value6')";
mysql_close();}
?>