Posted by Michael Fesser on 01/10/07 15:18
..oO(Brian)
>I hadn't, but have now tried this and still get an error,
>I know it's something really simple I'm missing here
>
>$information = $_REQUEST['information'];
> foreach($information){
> $output .= "$information<br>";
> }
foreach ($_REQUEST['information'] as $information) {
$output .= "$information<br>";
}
Micha
Navigation:
[Reply to this message]
|