0) { echo '

Comments:

'; while ($myrow = mysql_fetch_row($result)) { $name = $myrow[1]; $website = $myrow[3]; $comment = $myrow[4]; $order = array("\r\n", "\n", "\r"); $replace = '
'; $comment = str_replace($order, $replace, $comment); $timestamp = $myrow[5]; $timestamp = explode(' ', $timestamp); $timestamp2 = explode(':', $timestamp[1]); echo '
'; echo '

'; echo $comment; echo '

'; echo '

'; echo 'Posted by: '; if ($website!="") echo '',$name,''; else echo $name; echo ' | '; echo ''; echo $timestamp[0], " ", $timestamp2[0] + 1, ":", $timestamp2[1], ":", $timestamp2[2]; echo ''; echo '

'; echo '
'; echo '
'; } } ?>