I'm trying to have rotating server side includes. I've got this far, I've got the code in place to show the words one, two, three and four in rotation. When I replace the words with <?php require_once('rotating_links_01.php');?> it kicks it out because of the extra '. I'm sure I'm not containing it correctly. Any help appreciated.
<?php
$links =
array('one', 'two', 'three', 'four');
$i = rand(0, count($links)-1);
$selectedLinks = $links[$i];
?>