How to fetch title of an item from a database and send it to the header template in CodeIgniter

后端 未结 13 2117
忘掉有多难
忘掉有多难 2021-02-18 19:12

I am writing an application in CodeIgniter where I specify the </code> meta-tag on every page in every controller which I have managed to send to my header te <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5408099190056760" data-ad-slot="7305827575" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="fly-panel detail-box" id="flyReply"> <fieldset class="layui-elem-field layui-field-title" style="text-align: center;"> <legend>13条回答</legend> </fieldset> <ul class="jieda" id="jieda"> <li data-id="111" class="jieda-daan"> <a name="item-1111111111"></a> <div class="detail-about detail-about-reply"> <a class="fly-avatar" href=""> <img src="https://www.e-learn.cn/qa/data/avatar/000/00/00/small_000000024.jpg" alt=" 臣服心动 "> </a> <div class="fly-detail-user"> <a href="" class="fly-link"> <cite> 臣服心动</cite> </a> <span>(楼主)</span> </div> <div class="detail-hits"> <span>2021-02-18 20:09</span> </div> </div> <div class="detail-body jieda-body photos"> <p> <p>In your listing card view, do this:</p> <pre><code>foreach ($query as $rec){ <title><?php echo $rec->title ?> }

replace 'title' with the name of the column on your database that keeps the title of the credit card...so you are passing the results of the query you ran in your controller to this view, and then using a foreach loop to display data of the specific credit card

提交回复
热议问题