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

后端 未结 13 1965
忘掉有多难
忘掉有多难 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_000000043.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 19:47</span> </div> </div> <div class="detail-body jieda-body photos"> <p> <p>A simple example:</p> <p>Controller</p> <pre><code>$query = $this->Listing_model->get_card($card); $query = $query->row(); $header["page_title"] = $query->title; </code></pre> <p>View</p> <pre><code><title><?php echo (!isset($page_title) ? '' : $page_title) ?>

提交回复
热议问题