I want to show this on my php page:
I have this to connect it:
$sql_dbbase = "SELECT * from dbase";
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";