Hello
I want to exclude the follow PHP Part from caching:
<?php
$uhrzeit = date('s');
if ( $uhrzeit < 10 )
{
echo 'something1';
}
else if ( $uhrzeit < 20 )
{
echo 'something2';
}
else if ( $uhrzeit < 30 )
{
echo 'something1';
}
else if ( $uhrzeit < 40 )
{
echo 'something2';
}
else if ( $uhrzeit < 50 )
{
echo 'something1';
}
else
{
echo 'something2';
How can i do that?
Greetings