diff --git a/index.php b/index.php index 9a34a98..235d30c 100644 --- a/index.php +++ b/index.php @@ -54,7 +54,7 @@ function generate_short($url, $mysqli) { function find_short($hash, $mysqli) { $hash = mysqli_real_escape_string($mysqli, $hash); - $result = mysqli_query($mysqli, "SELECT * FROM " . DB_TABLE . " WHERE id='$hash'") . "'"); + $result = mysqli_query($mysqli, "SELECT * FROM " . DB_TABLE . " WHERE id='$hash'"); if ($row = mysqli_fetch_assoc($result)) { $link = $row['url']; mysqli_query($mysqli, "UPDATE " . DB_TABLE . " SET count='" . ($row['count'] + 1) . "' WHERE id='" . $row['id'] . "'");