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 11.07.2018 в 22: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 11.07.2018 / 22:42
source