I have an array of strings, and these strings have spaces in them. For example:
$arr = array('bob', 'john smith', 'grease monkey', 'etc');
Why is it when I try to $str = implode('|', $arr);, it stops at the first space it finds??
I'm left with a string like:
$str = "bob|john";
If I try:
$arr = array('bob', 'john', 'grease monkey', 'etc');
and implode, I get:
$str = "bob|john|grease";
Edit: I'm actually trying to set it to the value of a hidden field:
<input id="hidLblFields" name="hidLblFields" type="text" value=<?php echo implode('|', $myFields);?> />
$str, not$arr. I assume that was a typo in the question. Anyway, with that fixed, I can't reproduce your problem. – icktoofay Jun 1 '11 at 22:52value="<?php echo implode('|', $myFields);?>", otherwise the space of course breaks the html – Damien Pirsy Jun 1 '11 at 22:58