I tried this, but it's definetly not working:
Code: Select all
<?php
$i = 0;
$fonts = array('Trebuchet MS', 'Arial', 'Helvetica', 'sans-serif', 'Verdana', 'Georgia', 'Tahoma', 'Palatino', 'Gill Sans');
$font = $fonts[$i];
echo 'style="font-family: '.$font.';">';
$i = ($i + 1) % 9;
if (time() % 25 == 0) {
$i += 1;}
?>