Daily updating content from database

Thanks for answers. Sorry for some delay.

I don’t connect collection “tab” to dataset and repeater to dataset.
In order not to read the schedule for the whole year, I first determine the day number and read from the file only this record (results) corresponding to this day.

var today = new Date ();
const dayoy = dindex ( today ); // the day number
//console.log(dayoy);
//console.log(today);
const results =[];
return wixData . query ( “tab” )
. eq ( “dofY” , dayoy )
. find ()
. then (( results ) => {
vew ( results );

Using the vew (results) function, I connect the file’s record to page elements through a data-based repeater.
// connect to page
function vew ( results ) {
$w ( “#repeater1” ). forEachItem (( $item , itemData , index ) => {
index == 0 ? $item ( “#text8” ). text = results . items [ 0 ]. fajer :
index == 1 ? $item ( “#text8” ). text = results . items [ 0 ]. shuroq :
index == 2 ? $item ( “#text8” ). text = results . items [ 0 ]. dhohur :
index == 3 ? $item ( “#text8” ). text = results . items [ 0 ]. aser :
index == 4 ? $item ( “#text8” ). text = results . items [ 0 ]. maghreb :
$item ( “#text8” ). text = results . items [ 0 ]. isha ;
});

#text8” - container’s element for displaying the schedule time. In your case, this time must be rewritten in the file, taking into account the traditions of the United Kingdom.
Good luck to you!