это работает, а на 7,4 ошибку 17 линии
index.php
<?php
require_once 'dbconnect.php';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Connect DB</title>
</head>
<body>
<table>
<tr>
<th>id</th>
<th>data</th>
</tr>
<?php
$product = mysqli_query($connect, query: "SELECT id FROM orders ORDER BY orders.id DESC");
$product = mysqli_fetch_row($product);
foreach ($product as $product) {
?>
<tr>
<td><?= $product ?></td>
</tr>
<?php
}
?>
<?php
?>
</table>
</body>
</html>
dbconnect.php
<?php
//...
$connect = mysqli_connect( hostname: 'localhost', username: 'salonsht_cennik', password: 'JHG65uytu456', database: 'salonsht_cennik');
if (!$connect) {
die ('error');
};
Лучше бы ты ошибку скинул вместо кода и код 17 строки
Обсуждают сегодня