Делаю sql запрос брал инструкции с
https://www.php.net/manual/ru/mysqli.quickstart.st..., а запрос из phpmyadmin но при выполнении ошибка 500
php
<?php
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("зачем", "вам", "это", "надо");
$mysqli->query("TRUNCATE 'authlog'");
?>
<!DOCTYPE html>
<html>
<head>
<title>Админ Панель</title>
<meta charset="utf-8" />
<style>
body {
display: flex;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
background: black;
}
section {
background: black;
color: white;
border-radius: 1em;
padding: 1em;
border: 3px solid #fff; /* ����� ����� */
}
.menu {
top: 0%;
left: 100%;
}
.main {
background: black;
color: white;
border-radius: 1em;
padding: 1em;
border: 3px solid #fff; /* ����� ����� */
position: fixed;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%) }
}
</style>
</head>
<body>
<section class="main">
<script src="menu.js"></script>
<section>
<h2>Очищено успешно</h2>
<a href="authlog.php"><button>Назад</button></a>
</section>
</body>
</section>
</html>