|
Posted by Rik on 06/24/06 13:47
Ψrjan Langbakk wrote:
> I tried doing as you said above, but I ended up with no <thead>, and
> only one of the <tr>s shows up - the last one (only two in the
> CSV-file
> at the moment, but still).
> And, also, the whole thing is centered.
>
> Maybe I didn't do it right?
> Here's the code after replacment:
> while(($row = fgetcsv($csvHandle, filesize($csvFile))) !== false){
> $this->html = vsprintf($rowhtml, $row);
> }
Should offcourse be:
$this->html .= vsprintf($rowhtml, $row);
------------^
My apologies.
Grtz,
--
Rik Wasmus
[Back to original message]
|