Good morning,
i have a section in a php page as per code:
<div class="container section" id="afterHeader">
<div class="row">
<div class="tabs movies">
<a class="style1">1^ WEEK</a>
<ul>
<li><a href="#thu">GIO</a></li>
<li><a href="#fri">VEN</a></li>
<li><a href="#sat">SAB</a></li>
<li><a href="#sun">DOM</a></li>
<li><a href="#mon">LUN</a></li>
<li><a href="#tue">MAR</a></li>
<li><a href="#wed">MER</a></li>
</ul
I would need to replace the part <ul> </ul> part with this other code:
<?php
function myTab()
{
echo str_repeat(' ', 3);
}
function templateDay($start, $end)
{
$dayOfWeek = ['LUN', 'MAR', 'MER', 'GIO', 'VEN', 'SAB', 'DOM'];
$toDay = date('N') - 1;
for ($i = $start; $i < $end; $i++) {
echo $dayOfWeek[$toDay] === $dayOfWeek[$i] ? "<a style='color:red'>" . 'OGGI' . '</a>' . myTab() : "" . $dayOfWeek[$i] . '</a>' . myTab();
}
}
templateDay(3, 7);
templateDay(0, 3);
?>
Can anyone help me?
Thanks