ops (
!)
i made some progress here..
i remove all tags into textarea tag and i set textarea in diferent place so now works at least the text is written into 1 textarea .
Have a look
plz,
PHP Code:
..//connect to db etc
$query = "SELECT msgg, author, city, date, iphost
FROM shoutbox order by id DESC LIMIT 9";
$result = mysql_query($query);
echo "<textarea rows=10 cols=20>";
while($r=mysql_fetch_array($result))
{
echo "
posted at-by $r[date] by <A HREF='mailto:$r[city]'>
$r[author]
$r[mesgg]";
}
echo "</textarea>";
The only problem now is, the
<A HREF='mailto:$r[city]'> !! <-- this tag of link .
I want to
be visible a link at that place.. but is imposible to show a link there into the textarea now like this..cause if you try it the tag of href will be written there...
How to fix this , so that there into our textarea tag will work fine the a href link tang too so that will be visible a link there ??
Someone told me by
replacement.. but how we can do replecment i havent done that before ..please show me how to
Thanks again waiting for your
help...
