The little beauty with the Imperial CMS built a station, now home page to call the designated ID 12 as a recommendation, with the article summary, she wants to use the form of code directly dropped, and later convenient to modify. So how does the Imperial CMS invoke the article with the specified ID? Specifies the information ID, not the article that invokes the specified column ID. You can use the loop tag to:
[e:loop={' select * FROM [!db.pre!] Ecms_news where id=12 ', 1,24,0}]<a href= "<?= $bqsr [titleurl]?>" target= "_blank" ><?= $bqr [ Title]?></a> <br>
<?=esub ($BQR [smalltext],118]?>
[/e:loop]
Then, what if you want to call 12, 132? You can use or
[e:loop={' select * FROM [!db.pre!] Ecms_news where id=12 or id=13 ', 1,24,0}]
More points to specify the ID of the article call it? can be used in
[e:loop={' select * FROM [!db.pre!] Ecms_news where ID in (12,13,15,17) ', 1,24,0}]
Article reference from the Netizen answer
How does the Imperial CMS invoke the article with the specified ID to the homepage?