doc Posted September 6, 2021 Share Posted September 6, 2021 Hello guys, im here to ask you 1 simple question How can i use the \IPS\Db::i()->select in a template ? I mean i know i have this example : $select = \IPS\Db::i()->select( '*', 'some_table', array( 'field=?', 1 ), 'some_column DESC', array( 0, 10 ) ); But i dont understand the logic, i want to extract for example with that method all the names from core_members Can you help me with that? Jimi Wikman 1 Link to comment Share on other sites More sharing options...
Management Solution Matt Posted September 7, 2021 Management Solution Share Posted September 7, 2021 Ideally you'd not use queries like that in a template, and instead do that in a controller however life isn't always as neat so... {{foreach( \IPS\Db::i()->select(...) ) as $row}} <strong>My name is: {$row['name']}</strong> {{endforeach}} Will do the trick. doc, IPCommerceFan and Jimi Wikman 2 1 Link to comment Share on other sites More sharing options...
Recommended Posts