barney0o0 Posted April 10, 2008 Share Posted April 10, 2008 Its something that ive never thought about before, but im thinking if possible it would reduce the the db strain... I have a db for menus. Rather than doing 8 differant queries from the same table, if it possible to pull down the whole record then, via php, echo each menu item specific to its id? For example, if i do (menu recordset) SELECT * FROM mainmenu_en can i then do something like <?php echo $row_menu['link' WHERE ID=3]; ?> I know its crude...but just a thought Many thanks in advance Link to comment https://forums.phpfreaks.com/topic/100446-retrieving-full-record-separate-via-php/ Share on other sites More sharing options...
Daniel0 Posted April 10, 2008 Share Posted April 10, 2008 Well, you could select all the menu items and loop through them. You could then check the id inside the loop. Link to comment https://forums.phpfreaks.com/topic/100446-retrieving-full-record-separate-via-php/#findComment-513746 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.