Hallo!
I have this script. And I want concatenate three variables:
<?php
$begin = "begin";
$end = "the end";
$arr = array ("a", "b", "c");
function listarray () {
global $arr;
foreach ($arr as $values) {
echo $values;
}
}
$concat = $begin . listarray () . $end;
echo $concat;
?>
But result crashed down :rolleyes: .
Any suggestions ?