Yes that's right. this was just from the top of my head and it's early for
me.
it should be
$report .= "key:".$index." => ".$value."\n";
as Dan has pointed out.
"Dan Joseph" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> > $report = "key:".$index." => ".$value."\n";
>
>
Hi,
> $report = "key:".$index." => ".$value."\n";
actually, shouldn't it be:
$report .= "key:".$index." => ".$value."\n";
If you don't have the . there, its going to keep overwriting the report,
and thus writing only the last $report item that was built. .= would co
> What kind of 'logical' order do you need for the Post array?
>
> To clarify:
> Do you need to write to a file the POST variables passed to the script?
Yes, setup.php -> processSetup.php -> setup.txt
>
>
> "Kyle Babich" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> I have a
3 matches
Mail list logo