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 />".;

}
?>

I don't know the actual problem but:

Why do you have brackets in 10 and 14?

And do you mean "../db_recruit/view.php?id=" .$row_users

Hi people.

I got this error fixed, thanks for stopping by

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.