Two problems in your code:
1)
for($i=0;$i<$wordnum;$i++)
{
$re_string=" ".$string_arr[$i];
}
Should be
for($i=0;$i<$wordnum;$i++)
{
$re_string .= " ".$string_arr[$i];
}
Notice it's .= rather than =. You want to add to what you had a
Pam
Hi, that didn't work 1st time although it certainly got me moving in the
right direction.it repeated each word (1 to 10) with the hypertext
link "read more>>>" attached to each word which was very messy indeed.
I did a bit of juggling around and managed to get it perfect.
Many thanks f
You might be better off trying to do this directly within
mysql.
Check out the mysql reference manual for the functions you
have at your disposal.
Also, you could ask on a mysql forum, such as
http://www.webdeveloper.com
HTH
Keith
In theory, theory and practice are the same;
In practice th