ph34rl3ss Posted February 17, 2009 Share Posted February 17, 2009 Hi there, I hope anybody can help me or point me in the right direction. I would like to do the following with a mysql query: SELECT title FROM post Gives lets say 60 + results. 1) First post 2) Yeah it works and so on ... Now I would like to get all the results and merge them into one. 1) First post Yeah it works .... So that it becomes one long text. How can I achieve this? Thank you reading and hopefully helping me Greetings, Jeroen Link to comment https://forums.phpfreaks.com/topic/145626-result-merged-into-one/ Share on other sites More sharing options...
dreamwest Posted February 17, 2009 Share Posted February 17, 2009 1) First post 2) Yeah it works If 1) , 2) etc are rows, Dont use a <br> after $row $query = "SELECT * FROM example"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)){ echo $row['title']; } Link to comment https://forums.phpfreaks.com/topic/145626-result-merged-into-one/#findComment-764607 Share on other sites More sharing options...
fenway Posted February 18, 2009 Share Posted February 18, 2009 Short answer... don't format your output in mysql. Link to comment https://forums.phpfreaks.com/topic/145626-result-merged-into-one/#findComment-765011 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.