How to contencate two associative arrays? Sorry for my english.
$one = array( foot => "foot.htm", head => "head.htm" );
$two = array( foo => "foo.htm", bar => "bar.htm" );
Im not sure what you mean by contencate, but maybe you're looking for the function array_merge? Check that out in the PHP manual.
You should be able to use the + operator to add arrays.
<?php $three = $one + $two; ?>
-Keegan