$query="SELECT products.id, manufacturer.name AS manufacturer, manufacturer.id AS manufacturerid, products.name, amount, position.name AS position, position.id AS positionid FROM products INNER JOIN position ON products.position = position.id INNER JOIN manufacturer ON products.manufacturer = manufacturer.id";
$query="SELECT products.id, manufacturer.name AS manufacturer, manufacturer.id AS manufacturerid, products.name, amount, position.name AS position, position.id AS positionid, lastUpdate FROM products INNER JOIN position ON products.position = position.id INNER JOIN manufacturer ON products.manufacturer = manufacturer.id";