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条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度