HTML interesse |
|
wat is er verkeerd aan deze syntax?
<?php
function echoXY ($x, $y){
$a["test"] = 'testen';
$b["hw"] = 'hello world';
return $$x[$y];
}
echoXY ('a', 'test');
?>
<?php function echoXY ($x, $y){ $a["test"] = 'testen'; $b["hw"] = 'hello world'; return $$x[$y]; } echoXY ('a', 'test'); ?>
er komt nl. niets op het scherm te staan
|