<tfoot id='iscVe'></tfoot>
      <bdo id='iscVe'></bdo><ul id='iscVe'></ul>

    1. <small id='iscVe'></small><noframes id='iscVe'>

      <legend id='iscVe'><style id='iscVe'><dir id='iscVe'><q id='iscVe'></q></dir></style></legend>
      <i id='iscVe'><tr id='iscVe'><dt id='iscVe'><q id='iscVe'><span id='iscVe'><b id='iscVe'><form id='iscVe'><ins id='iscVe'></ins><ul id='iscVe'></ul><sub id='iscVe'></sub></form><legend id='iscVe'></legend><bdo id='iscVe'><pre id='iscVe'><center id='iscVe'></center></pre></bdo></b><th id='iscVe'></th></span></q></dt></tr></i><div id='iscVe'><tfoot id='iscVe'></tfoot><dl id='iscVe'><fieldset id='iscVe'></fieldset></dl></div>

    2. joomla sql 查询

      joomla sql query(joomla sql 查询)
    3. <small id='l7kW9'></small><noframes id='l7kW9'>

        <legend id='l7kW9'><style id='l7kW9'><dir id='l7kW9'><q id='l7kW9'></q></dir></style></legend>
              <tbody id='l7kW9'></tbody>

            • <i id='l7kW9'><tr id='l7kW9'><dt id='l7kW9'><q id='l7kW9'><span id='l7kW9'><b id='l7kW9'><form id='l7kW9'><ins id='l7kW9'></ins><ul id='l7kW9'></ul><sub id='l7kW9'></sub></form><legend id='l7kW9'></legend><bdo id='l7kW9'><pre id='l7kW9'><center id='l7kW9'></center></pre></bdo></b><th id='l7kW9'></th></span></q></dt></tr></i><div id='l7kW9'><tfoot id='l7kW9'></tfoot><dl id='l7kW9'><fieldset id='l7kW9'></fieldset></dl></div>

                <bdo id='l7kW9'></bdo><ul id='l7kW9'></ul>

                <tfoot id='l7kW9'></tfoot>
                本文介绍了joomla sql 查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                好的,所以我对 sql 了解不多,但我正在尝试为我的网站进行动态重定向,想法是将每个用户重定向到与用户调用的名称相同的文章,所以这里有一些代码,但我不知道知道如何完成它:(

                ok so i dont know much about sql but im trying to make a dinamic redirect for my website, the idea is to redirect each user to an article called the same as the user is called, so here's a little code but i dont know how to finish it :(

                $database->setQuery("SELECT id "." FROM #__content "." WHERE state='1' "." ");
                $rows = $database->loadObjectList();
                foreach($rows as $user_name){   
                $article_id = $row->id; 
                break;
                }
                $redirect_url = 'index.php?option=com_content&view=article&id='.$article_id;
                

                $user_name 和 $redirect_url 是预制"选项,所以不用担心,我只需要知道如何实际执行查询嘿嘿,感谢您的帮助 :D

                $user_name and $redirect_url are "premade" options so dont worry about it, i just need to know how to actually do the query hehe, thanks for the help :D

                推荐答案

                看起来你打算返回单个 article_id,这样 SQL 查询应该总是返回单行(值),在这种情况下,foreach 必须消失.问题是您需要重写 SQL 查询并向 WHERE 子句添加另一个条件.也许是这样的:

                It looks like you intend to return a single article_id, so that SQL query should always return a single row (value), in which case, that foreach must disappear. The thing is that you need to rewrite your SQL query and add another condition to the WHERE clause. Perhaps something like this:

                $user =& JFactory::getUser();
                $database->setQuery("SELECT id FROM #__content WHERE state='1' AND title = '".$user->name."'");
                $row = $database->loadAssoc();
                $redirect_url = 'index.php?option=com_content&view=article&id='.$row['id'];
                

                请注意,我没有测试过上面的代码.

                Please note that I have not tested the above code.

                这篇关于joomla sql 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Is Joomla 2.5 much faster than Joomla 1.5 Querywise(Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗)
                How to share Joomla login session from one joomla website to one ASP.Net MVC website(如何将 Joomla 登录会话从一个 joomla 网站共享到一个 ASP.Net MVC 网站)
                htaccess redirect root to subdirectory but allow index.php in root AND query strings to function(htaccess 将根重定向到子目录,但允许根和查询字符串中的 index.php 起作用)
                Joomla include database functions(Joomla 包含数据库功能)
                nl2br() not working when displaying SQL results(显示 SQL 结果时 nl2br() 不起作用)
                Joomla 2.5 JFactory::getSession(); seems to be caching in firefox(Joomla 2.5 JFactory::getSession();似乎在 Firefox 中缓存)
                    <i id='oVHON'><tr id='oVHON'><dt id='oVHON'><q id='oVHON'><span id='oVHON'><b id='oVHON'><form id='oVHON'><ins id='oVHON'></ins><ul id='oVHON'></ul><sub id='oVHON'></sub></form><legend id='oVHON'></legend><bdo id='oVHON'><pre id='oVHON'><center id='oVHON'></center></pre></bdo></b><th id='oVHON'></th></span></q></dt></tr></i><div id='oVHON'><tfoot id='oVHON'></tfoot><dl id='oVHON'><fieldset id='oVHON'></fieldset></dl></div>
                    <legend id='oVHON'><style id='oVHON'><dir id='oVHON'><q id='oVHON'></q></dir></style></legend>
                  • <small id='oVHON'></small><noframes id='oVHON'>

                    <tfoot id='oVHON'></tfoot>

                      <bdo id='oVHON'></bdo><ul id='oVHON'></ul>

                          <tbody id='oVHON'></tbody>