Hallo!
Hier wird leider logischerweise nur die letzte Zeile in die Variable $content übergeben. Möchte aber die gesamte Liste in eine Variable stopfen. Gibt es eine andere Lösung ausser eine Session ?
danke euch
PHP-Code:
function getlist ($queryString, $template1, $template2, $template3)
{
$result = @mysql_query($queryString);
$this->result = $result;
$this->template1 = $template1;
$this->template2 = $template2;
$this->template3 = $template3;
if ($this->result) {
while ($row = mysql_fetch_array($this->result, MYSQL_ASSOC)) {
$tblID = $row["ID"];
$tbldir = $row["directory"];
$tbllink = $row["linkname"];
$tblarea = $row["area"];
$tblareaname = $row["areaname"];
$this->content = $this->template1 . $tbllink . $this->template2 . $tbldir . $this->template3;
}
}
}
Hier wird leider logischerweise nur die letzte Zeile in die Variable $content übergeben. Möchte aber die gesamte Liste in eine Variable stopfen. Gibt es eine andere Lösung ausser eine Session ?
danke euch
Kommentar