I want to show data from a database. I already know this, but only everything that is in id 0 of the base table is shown, and now I want to show what is in table 2. For example
id dato1 dato2
0 abc def
1 ghi jkl
Well, what you are "ID: 0" and it will show, but what is "ID: 1" not as shown, this is my method to display:
$sql_dbdatos = "SELECT * from datos";
$result_dbdatos= mysqli_query($conexion,$sql_dbdatos);
$rows_dbdatos = mysqli_fetch_array($result_dbdatos);
And this I put in a table:
<li> ' . $rows_dbpartidos['dato1'] . '</li>