Pytanie : PHP MySQL mysql_fetch_assoc dostawać pierwszy i ostatni element

Pewny dlaczego the pierwszy i ostatni element the rezultat… I potrzebować append niektóre html atrybut. Obecnie I mieć to:

$getfiles = mysql_query ("WYBIÓRKA * OD tblfiles DOKĄD fkey = "$thiskey" ROZKAZ Fkey ASC ") lub kostka do gry (mysql_error ());
while ($row = mysql_fetch_assoc ($getfiles))
{
echo "

". $row ["filename"]. 'p>;
}

I potrzeba the wydajność rząd jak potrzeba dla mówić rezultat 4 rząd:

File 1


File 2


File 3


File 4



Thanks.

Odpowiedź : PHP MySQL mysql_fetch_assoc dostawać pierwszy i ostatni element

$table = '';
$getfiles = mysql_query ("WYBIÓRKA * OD tblfiles DOKĄD fkey = "$thiskey" ROZKAZ Fkey ASC ") lub kostka do gry (mysql_error ());
podczas gdy ($row = mysql_fetch_assoc ($getfiles))
{
    $table. = '

". $row ["filename"]."

';
}
$table = preg_replace ('/^

/","

', $table);
$table = preg_replace ('/

([^$/<>","

\ (1)

', $table);

echowy $table;
Inne rozwiązania  
 
programming4us programming4us