|
Posted by luke on 11/24/05 02:19
$myarray = array(
one-two-three,
red-blue-green,
apples-oranges-pears,
);
foreach ($myarray as $value) {
include("folder/" . $value . "/index.php");
}
It seems the dahses in the array values are causing all the problems, if I
remove them it works fine, but I need them in; is there a simple solution?
Navigation:
[Reply to this message]
|