$display_block is followed by .=
The period means that the value in the variable will be appended. In the while loop the parser generates an error since the variable has not yet been assigned. On my machine the code still worked as it should.
To get rid of the error message assign the variable a null text string value before the loop.
$display_block = ""
while ($row = mysql_fetch_array($result)) {
Namaste,
Kevin Tough
|