Hi _GeS_, Tuesday, November 19, 2002, 12:45:03 PM, I've got:
_> Hi! _> Can someone change this line so that it works, please ? _> echo '<td class="ContentCell"><a href="skripte/link.php?zst=' . $line["zst"] . '" OnMouseOver="window.status='[Visit this page]';return true" OnMouseOut="window.status='';return true">' . _> $line["url"] . '</a></td>'; It seems to me, that You must add slashes before single quote, if You enclose the string within single quotes. Like this: echo '<td class="ContentCell"><a href="skripte/link.php?zst=' . $line["zst"] . '" OnMouseOver="window.status=\'[Visit this page]\';return true" OnMouseOut="window.status=\'\';return true">' . $line["url"] . '</a></td>'; -- The Same, Steel mailto:[EMAIL PROTECTED] http://www.none.ru -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php