As I show this data in mysql

-1

I want to show this on my php page:

I have this to connect it:

$sql_dbbase = "SELECT * from dbase";

    
asked by MatiPHP 12.07.2018 в 00:31
source

1 answer

3

If you want to get the row that would be as follows:

$sql_dbbase = "SELECT * from dbase where id=1";

Or if you want to get only the ID column, it would be:

$sql_dbbase = "select id from dbase";
    
answered by 12.07.2018 / 00:42
source