salve allora io nella mia tabella users ho un campo solo name e dentro ho 2 dati tipo text quali crom e firefox. ma x qualche ragione sconosciuta non mmi motra nulla sopra la pagina, voglio anche farvi sapere che uso linux ubuntu 20.10 nel caso fosse rilevante
form.html
login-db.php
main.php
form.html
HTML:
<head>
<style>
body{background-color:darkorange;}
</style>
</head>
<form method="post" action="main.php" target="_self">
<input type="text" name="txt" placeholder="txt">
<input type="submit" name="submit">
</form>
login-db.php
PHP:
<?php
$db_host ="localhost";
$db_username = "root";
$db_pw = "";
$db_name = "db";
$conn = mysqli_connect($db_host, $db_username, $db_pw, $db_name);
?>
PHP:
<head>
<style>
body{background-color:darkorange;}
</style>
</head>
<?php
error_reporting(E_ALL);
if(isset($_POST['submit'])){
include("login-db.php");
$sql = "select * from users";
$result = mysqli_query($conn, $sql) or die(mysqli_error($conn));
$fila = mysqli_fetch_row($result);
echo $fila[0];
}
?>