Jeśli tabela jest pusta (0 wierszy), wynik zapytania =null jest normalnie.
A chcesz pokazać dane wiersza, gdy istnieje identyfikator wiersza x, powinieneś wybrać kolumnę, a nie select NULL AS column
, ponieważ jeśli dane wiersza istnieją, wszystkie wartości w kolumnie są na zawsze null.
Tak więc, zmień kod na SQL, nie wybieraj wartości null, a gdy wynik zapytania jest pusty, zwróć domyślne zestawy, takie jak:
function get_data( $id )
{
$query = "SELECT
DATE_FORMAT(curdate(),'%d/%m-%Y') AS date_created,
`name`,
`address`,
`status`
FROM `t_penomoran`
WHERE `nomor` = '{$id}'";
$result = $this->db->query($query)->row();
if ( empty($result) ) {
$result = (object)[
'date_created' => date('d/m-Y'),
'name' => null,
'address' => null,
'status' => null,
];
}
return $result;
}