MikeDXUNL Posted July 26, 2008 Share Posted July 26, 2008 <?php while($relnews = mysql_fetch_array($related_news)) { $links[] = '<a href="news.php?id='.$relnews['newsid'].'">'.$relnews['title'].'</a>, '; } $re = explode(", ", $links); $arrCondition = array(); $qu = ""; for ($i=0;$i<count($re);$i++) { array_push($arrCondition, $re[$i]); } $qu = implode("<br /> ",$arrCondition); ?> if I echo $qu; it shows 'Array' if I do: foreach($links as $link){ echo $link; } it outputs Game Added: Call of Duty® 4: Modern Warfare™, More Call of Duty 4 News, which is correct. why wont it all push into one array? Link to comment https://forums.phpfreaks.com/topic/116760-solved-echoing-array/ Share on other sites More sharing options...
.josh Posted July 26, 2008 Share Posted July 26, 2008 well i think you need to change $links[] = to $links .= but am i reading that wrong or are you using a loop to make a comma separated list, only to explode it into an array, and then loop through it to create another array, and then implode it into a string? Link to comment https://forums.phpfreaks.com/topic/116760-solved-echoing-array/#findComment-600470 Share on other sites More sharing options...
MikeDXUNL Posted July 26, 2008 Author Share Posted July 26, 2008 $links .= thanks for the help Link to comment https://forums.phpfreaks.com/topic/116760-solved-echoing-array/#findComment-600474 Share on other sites More sharing options...
.josh Posted July 26, 2008 Share Posted July 26, 2008 well that's all good and well but maybe I'm reading that wrong but I think you're doing a whole bunch of extra stuff there you don't really need to be doing... if you give some example output I bet we could find a much shorter way Link to comment https://forums.phpfreaks.com/topic/116760-solved-echoing-array/#findComment-600476 Share on other sites More sharing options...
DarkWater Posted July 26, 2008 Share Posted July 26, 2008 I just talked to him on MSN and shortened it up. =P Link to comment https://forums.phpfreaks.com/topic/116760-solved-echoing-array/#findComment-600478 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.