Visa ett inlägg
Oläst 2003-04-23, 20:29 #7
orreborres avatar
orreborre orreborre är inte uppkopplad
Flitig postare
 
Reg.datum: Apr 2003
Inlägg: 309
orreborre orreborre är inte uppkopplad
Flitig postare
orreborres avatar
 
Reg.datum: Apr 2003
Inlägg: 309
Hej!

Istället för:

while (list ($ForNamn, $EfterNamn, $email) = mysql_fetch_row ($result)) {
print "$ForNamn $EfterNamn - $email
";


testa:

while($row = mysql_fetch_row($result)) {
print "$row[0] $row[1] - $row[2]
";

eller:
while($row = mysql_fetch_array($result)) {
print "$row[ForNamn] $row[EfterNamn] - $row[email]
";


Och se om det blir någon skillnad...
orreborre är inte uppkopplad   Svara med citatSvara med citat