hackalive Posted March 28, 2010 Share Posted March 28, 2010 Hi guys, so I have a DB which has a table called article, it has a field called group (which is an INT from 0 to 9) now I need when displaying content on PHP page for the articles to be in their groups, so all 0s to echo one after the other then the group 1 etc Any ideas on how to do this? I have already got the mysqli code to get all the articles now just need to do this sort and echo Thanks in advance for all and any help Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 someone must have done this before Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 any ideas guys, I really need to solve this Quote Link to comment Share on other sites More sharing options...
sasa Posted March 28, 2010 Share Posted March 28, 2010 add ORDER BY `group` to the end of your query Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 okay I guess I should be more specific, In a PHP file I have something like this "<div id="header"><PL1></header><div id="content"><PL2></div>" now I need to group based on the INT 0 to 9 and then relate it to the relevant PL# so PL0 is 0 etc so I end up with $1, $2, etc and then can do a replace so <PL1> becomes $1 any help on how to do this would be much appreciated Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 so basically I need a way to add several records from a DB that have the same "position" INT and join them into one variable relative eg $1 etc thanks Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 anyone? Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 28, 2010 Author Share Posted March 28, 2010 bump Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 29, 2010 Author Share Posted March 29, 2010 someone please........ Quote Link to comment Share on other sites More sharing options...
trq Posted March 29, 2010 Share Posted March 29, 2010 If you want help you need to post some relevant code. Quote Link to comment Share on other sites More sharing options...
hackalive Posted March 29, 2010 Author Share Posted March 29, 2010 I have no idea where to get started; here i what I want to do In a PHP file I have something like this "<div id="header"><PL1></header><div id="content"><PL2></div>" now I need to group based on the INT 0 to 9 and then relate it to the relevant PL# so PL0 is 0 etc so I end up with $1, $2, etc and then can do a replace so <PL1> becomes $1 Quote Link to comment Share on other sites More sharing options...
trq Posted March 29, 2010 Share Posted March 29, 2010 A very simple (and untested) example. $sql = "SELECT data FROM fld ORDER by `group`"; if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { $group = ''; while ($row = mysql_fetch_object($result)) { // if group different to current create a new div. if ($row->group != $group) { echo "<div id='PL{$row->group}'>"; } // echo data within <p></p> tags. echo "<p>{$row->data}</p>"; // if group different to current close div & set to current. if ($row->group != $group) { echo "</div>"; $group = $row->group; } } } } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.