Yes, sorry this is the code I was using.
<textarea name="textarea" cols="26" rows="15" wrap="VIRTUAL" class="nobord"><?php do { ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="news.php"><?php echo $row_rsNews['title']; ?></a></td>
</tr>
<tr>
<td><img src="images/clear.gif" width="5" height="5"></td>
</tr>
</table>
<?php } while ($row_rsNews = mysql_fetch_assoc($rsNews)); ?>
</textarea>
and when it prints, I'm getting the results of the query plus all the html that goes along with it inside my textarea. How can I strip out the code but retain the formatting?
thanks,
Troy