Forum Moderators: coopster
---------------------------
<?php
$content = array("http://file3.php", "http://file2.php", "http://file1.php");
shuffle($content);
echo file_get_contents($content[0]);
?>
---------------------------
Why is it that the PHP scripting on the included files DOES NOT get parsed? When I view the main page of my site - the source code - I see the PHP that SHOULD HAVE been parsed - but is just plain, raw php. I need a bit of help with this. Am I calling the .php files incorrectly - thus allowing them not to be parsed before being included? Thanks!