Micah Montoy wrote:
I'm having a bit of difficulty getting a string to attach to itself from an
array.  Here is the bit of code I'm working on.

$wresult = "";

 foreach ($search_string as $word_result){
  $wresult = $wresult & " " & $word_result;
 }

what about:


$wresult = join ( " ", $search_string );

Ciao,

Fabio


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to