|
Posted by J.O. Aho on 11/24/05 02:35
luke wrote:
> $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?
>
>
$myarray = array(
"one-two-three",
"red-blue-green",
"apples-oranges-pears",
);
Navigation:
[Reply to this message]
|