-2
Instead of inserting the string, query inserts in the Description column the zero number:
Code:
$query = $db->prepare("UPDATE table_name SET tracker = ?, description = ? WHERE id = ?");
$query->bind_param("sis", $tracker, $description, $id);
$query->execute();