douxin1163 2014-06-18 09:13
浏览 91
已采纳

php在html中循环时出现循环错误

Hi i have small project and predefined format because of which i want to select from selectbox and pass this value so that i can fetch the data from database and echo it in html. I am able to pass the select value and also be able to fetch the data from database but not able to echo it in html.And i am getting multiple values from database. Any solution ? thanks.. Here is my code:

dashborad.php

if($param['aktion'] == 'save-widget-news')
{
    //$param['news'] 
    //UPDATE SQL...

    $page['register-news'] = array(
        1   => array( 'News','aktiv',$page['script'],'',''),
        0   => array( 'Edit News','enabled',$page['script'],''),    
    );
    $selectValue = $_POST['news'];
    if(isset($_POST['saveId']))
    {
     if(($selectValue)==4){

      $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
FROM ad_news_texte
INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
WHERE ad_news.datum_archiv
BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +28
DAY AND curdate( )
";

$sql_select=mysql_query($sql);

}
 if(($selectValue)==6){

      $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
FROM ad_news_texte
INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
WHERE ad_news.datum_archiv
BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +42
DAY AND curdate( )
";

$sql_select=mysql_query($sql);

}

if(($selectValue)==10){

      $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
FROM ad_news_texte
INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
WHERE ad_news.datum_archiv
BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +70
DAY AND curdate( )
";

$sql_select=mysql_query($sql);

}
$html = '<table width="538" cellspacing="0" cellpadding="0" border="0">
        <tr>
            <td>
                <div>'.CreateRegister($page['register-news']).'</div>
                '.CreateMessage().'
                <div class="cont-liste-verlauf register">                       
                    <table id="news">
                    <div class="welcome-rahmen krz toggleNews" id="news_261_kurz"> ';
                    while($row = mysql_fetch_assoc($sql_select)){
                        $news = $row['headline'] . " " .$row['datum_archiv'] ; 
                        $html = '<p class="welcome-subheadline"><input type="text" name="type" value="'. $news .'" ></p>';  
                        }}                                                                                  
                    $html = '</table>                                           
                </div>
            </td>
    </tr>
    </table>';


                    $return = array(
            'status' => 1,
            'html'  => $html
        );

    echo json_encode($return);
    die();
    $param['aktion'] = 'get-widget-news';
}

if($param['aktion'] == 'get-widget-news')
{
    $newsId = 1;
    $page['register-news'] = array(
        1   => array( 'News','aktiv',$page['script'],''),
        0   => array( 'Edit-News','enabled',$page['script'],'',''), 
    );
        $param['aktion'] = 'save-widget-news';
        $html = '<table width="538" cellspacing="0" cellpadding="0" border="0" >
            <tr>
                <td>
                <div>'.CreateRegister($page['register-news']).'</div>
                '.CreateMessage().'
                <div class="cont-liste-verlauf register">               
                <table id="news">
<div class="welcome-rahmen lng toggleNews" id="news_269_kurz">
<a href="news.php?id=269" class="TrackNews" id="01" target="_blank">
<p class="welcome-breadcrump">Montag, 19.05.2014</p>
<p class="welcome-subheadline">Teilnahme von MAN Top Used an der Samoter 2014</p>
<div class="newsText">
<p class="welcome-text"><img src="http://intern.autodo.de/admin/news/man-it.jpg" width="165" class="text_fixed" border="0"></p>
<p class="welcome-text">Die 29. Internationale Erd- und Bautechnik-Ausstellung Samoter fand zwischen dem 8. und 11. Mai in Verona statt und zog rund 100.000 Besucher an. Samoter ist die wichtigste italienische Messe ihrer Art, die den Themen Erdbewegung, Hochbau und Baumaschinen gewidmet ist. Zugleich ist diese Veranstaltung damit auch f? europ?chen Markt bedeutsam.</p>
</div>
</div>
</a>

</table>
</div>
</td>
</tr>
</table>';

    $return = array(
            'status' => 1,
            'html'  => $html
        );

    echo json_encode($return);
    die();
}

dashboard.js

function saveNewsWidget()
    {
        var selectBoxValue = $('select[name="news"]').val();
        $.ajax({
        type: "POST",
        url: "ajax/dashboard.php",
        dataType : 'json',
        cache: false,
        data: {'aktion' : 'save-widget-news', 'news' : selectBoxValue},
        success: function(data)
        {
            //getNewsWidget();
            $('#news').html(data['html']);

        }
      });
  }

    function getNewsWidget()
    {
        $.ajax({
        type: "POST",
        url: "ajax/dashboard.php",
        dataType : 'json',
        cache: false,
        data: {'aktion' : 'get-widget-news'},
        success: function(data){
            //alert(data);
            $('#news').html(data['html']);
        },
        error: function(data){
            alert('error');
            //$('#news').html(data.html);
        }
      });
  }
  • 写回答

2条回答 默认 最新

  • douchuose2514 2014-06-18 11:44
    关注

    Always try to format your code properly so the reader can understand which statement/clause ends where, i found a few issues in your code which might be the reason of the issue you are having

    • Your if(isset($_POST['saveId'])) statement body ends right after the while statement body, while there is still some code remaining which should logically be executed within the body of the if statement

    • You are not concatenating the previously set data of $html to the newly set $html data, so only the last bit will stay in the variable

    Here is the altered code, i didn't test it but i fixed the two issues i found and applied some formatting so other can understand it better

    if($param['aktion'] == 'save-widget-news')
    {
        //$param['news'] 
        //UPDATE SQL...
    
        $page['register-news'] = array(
            1   => array( 'News','aktiv',$page['script'],'',''),
            0   => array( 'Edit News','enabled',$page['script'],''),    
        );
        $selectValue = $_POST['news'];
             if(($selectValue)==4)
             {
    
                $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
                FROM ad_news_texte
                INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
                INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
                WHERE ad_news.datum_archiv
                BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +28
                DAY AND curdate( )
                ";
    
                $sql_select=mysql_query($sql);
            }
            if(($selectValue)==6)
            {
                $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
                FROM ad_news_texte
                INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
                INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
                WHERE ad_news.datum_archiv
                BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +42
                DAY AND curdate( )
                ";
    
                $sql_select=mysql_query($sql);
            }
    
            if(($selectValue)==10){
    
                $sql=" SELECT DISTINCT ad_news_texte.headline, ad_news.datum_archiv
                FROM ad_news_texte
                INNER JOIN ad_news_oe ON ad_news_texte.news_id = ad_news_oe.id_ad_news
                INNER JOIN ad_news ON ad_news_oe.id_ad_news = ad_news.id
                WHERE ad_news.datum_archiv
                BETWEEN curdate( ) - INTERVAL DAYOFWEEK( curdate( ) ) +70
                DAY AND curdate( )
                ";
    
            $sql_select=mysql_query($sql);
    
            }
    
            $html = '<table width="538" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                        <td>
                            <div>'.CreateRegister($page['register-news']).'</div>
                            '.CreateMessage().'
                            <div class="cont-liste-verlauf register">                       
                                <table id="news">
                                <div class="welcome-rahmen krz toggleNews" id="news_261_kurz"> ';
                                while($row = mysql_fetch_assoc($sql_select)){
                                    $news = $row['headline'] . " " .$row['datum_archiv'] ; 
                                    $html .= '<p class="welcome-subheadline"><input type="text" name="type" value="'. $news .'" ></p>';  
                                    }                                                                                 
                                $html .= '</table>                                           
                            </div>
                        </td>
                </tr>
                </table>';
    
    
                            $return = array(
                                'status' => 1,
                                'html'  => $html
                            );
    
            echo json_encode($return);
            die();
        $param['aktion'] = 'get-widget-news';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图