Howdy. I am wanting to echo a SSI depending on the view variable. The script echoes the include however its parsed as text and not as php code. Is there another way to do this.
<?php
$ssis = array("company_0.php", "company_1.php", "company_2.php", "company_3.php", "company_4.php");
$view = $view;
$code = $ssis[$view];
echo "<?php include=\"SSI\".$code."\" ?>";
?>