Please can someone help me out with this error?
Parse error: syntax error, unexpected ';' in /home/npr/public_html/getfile.php on line 12
if i take off the line 12 the page works but i need to include the line 12.HELP!
<?php
include('recruit.php');
$id = $_GET['id'];
mysql_select_db($database_, $recruit);
$query_users = "SELECT * FROM files WHERE id='$id'";
$tmp = mysql_query($query_users, $recruit) or die(mysql_error());
$row_users = mysql_fetch_assoc($tmp);
$totalRows_users = mysql_num_rows($tmp);
{
echo "File: <a href=uploads/" . $row_users['newfile'] . ">File</a><br /><br />";
echo "back: <a href=../db_recruit/view.php" . $row_users['id'] . ">back</a><br /><br />".;
}
?>