|
Posted by Ψrjan Langbakk on 06/24/06 12:21
I'm parsing a CSV-file into a table on a webpage - and I'd like to be
able to change the alignment for the _last_ <td> in each <tr> - but, as
the file is today, it's not possible for me to assign a CSS-class on
only the last <td>. I was wondering if anyone could give me a clue as to
what I need to change in the following code, to make this possible (I'm
assuming I need to have each <td> present in the code, so as to be able
to assign a class to the last one, but how? I can tell as much as that I
know the number of <td>'s in each CSV-file - they are a constant).
Any help would be appreciated.
Here is the code:
<?php
class csv{
/* This class builds a html table from the contents of a CSV file. */
var $html = '';
function csv($csvFile){
if(!$csvHandle = fopen($csvFile, 'r')){
$this->html .= "Couldn't open $csvFile.";
}
else{
$this->html .= "<table id=\"dusjkabinetter\">
<thead><tr>\n
<th id=\"th2\" valign=\"top\" align=\"left\">Prod. nr:</th>\n
<th id=\"th3\" valign=\"top\" align=\"left\">Bilder:<br />(klikk
for stΓΈrre visning):</th>\n
<th id=\"th4\" valign=\"top\" align=\"left\">Beskrivelse:</th>\n
<th id=\"th5\" valign=\"top\" align=\"left\">Pris:</th>\n
</tr>\n
</thead>\n";
while(($row = fgetcsv($csvHandle, filesize($csvFile))) !== false){
$this->html .= "<tr>";
foreach($row as $field){
$this->html .= "<td>$field</td>";
}
$this->html .= "</tr>\n";
}
fclose($csvHandle);
$this->html .= "</table>\n\n\n";
}
}
function getHtml(){
return $this->html;
}
}
echo <<<TABELL_START
<div class='t_tabell'>
TABELL_START;
$html .= "<h2>Dusjkabinetter</h2>\n";
$mycsv = new csv('csv-filer/dusjkabinetter.csv', ' ');
$html .= $mycsv->getHtml();
echo $html;
echo <<<TABELL_SLUTT
</div>
TABELL_SLUTT;
?>
--
mvh
Γrjan Langbakk
Navigation:
[Reply to this message]
|