I'm trying to pass $row['uuid']
to the end of a URL without success so that it opens up a new window to display the jpeg file which is located on a network drive.
The code I have been trying is
echo'<table border="1" ><th >Date and Time</th><th>Plate</th> <th>Confidence</th><th>Image Name</th>';
while($row = mysql_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['dt'] . "</td>";
echo "<td>" . $row['plate'] . "</td>";
echo "<td>" . $row['confidence'] . "</td>";
echo "<td><a href='http://192.xxx.x.xx/Pictures/plates/.$row['uuid'] .' target='blank_'>" . $row['uuid'] . "</a></td>";
echo "</tr>";
}
echo "</table>";
The error I keep getting is:
PHP Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING)
I have tried different ways to add $row['uuid']
to the end of the URL with no success.