|
Posted by nescio on 01/09/06 16:04
> What HTML syntax are you using, and what PHP syntax are you using in
> your foreach() loop?
echo "<input type='hidden' name='headersKlant' value='" . $arrayHeaders .
"'>";
$headersKlant = $_REQUEST['headersKlant'];
/*** debug; */
if($debug == 'ja'){
echo "<br>";
echo "<b>\$headersKlant</b><br>";
foreach($headersKlant as $k => $v){
echo "\$headersKlant[" . $k . "]=" . $v . "<br>";
}
echo '<br>';
}
/************/
> There's probably a better way to do what you want, e.g. using sessions.
yes, but that is not possible,long story to explain why :-)
Navigation:
[Reply to this message]
|