How do I create a table? I’ve uploaded this code on my file manager, and then I’ve visited my website. I went to phpyAdmin but it doesn’t created a table.
My code:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
$server = "sql204.epizy.com";
$user = "epiz_26098080";
$password = "HIDDEN BY MOD";
$db = "epiz_26098080_test"/
$connect = mysqli_connect($server, $user, $password, $db);
mysqli_query($connect, "
CREATE TABLE um (
id int AUTO_INCREMENT,
nome varchar(16),
PRIMARY KEY (id)
);
");
?>
</body>
</html>