Hi

>   Warning: Wrong parameter count for mysql_fetch_row() in
> /web/sites/94/ichmussweg/www.ichmussweg.f2s.com/gastebuch.php on line 54
>
> line 54 is the last one of the code extract starting with "while($row":
>  $res=mysql_query("SELECT id as id, msg as msg,
> date_format(datum,'$datumsFormat') as datum, namen as namen FROM
> $mysqlTabelle ORDER BY id DESC LIMIT $start,$kommentareProSeite")
> or die("Fehler:".mysql_error());
>  while($row=mysql_fetch_row($res,MYSQL_ASSOC)) {

This question belongs to a PHP mail-list not MySQL, but change
mysql_fetch_row with mysql_fetch_array:

while($row=mysql_fetch_array($res, MYSQL_ASSOC)) {

Regards,
Martin


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to