亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

PHP 開発企業(yè) Web サイトのチュートリアルのニュースと情報(bào)

ニュース情報(bào)を見てみましょう: コードは次のとおりです:

<?php
    require_once('../admin/conn.php');
    $sql = "SELECT * from news where type=0 order by id desc";
    $res = mysql_query($sql);
    $sql1 = "SELECT * from news where type=1 order by id desc limit 0,8";
    $res1 = mysql_query($sql1);
?>
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> 
    <meta name="format-detection" content="telephone=no">
    <title>新聞資訊</title>
    <style type="text/css">
        *{margin:0px;padding:0px;}
        /*頭部樣式*/
        #top{width:410px;height:40px;margin:0 auto;}
        body{background:#f0f0f0;}
        #to_left{float:left;}
        #top_right{float:right;margin-top:20px;margin-right:15px;}
        li{float:left;list-style:none;margin:0px 5px; padding-bottom:15px;}
        li a{text-decoration:none;color:#000;}
        li a:hover{color:red;}
        #cnt{width:410px;margin:0 auto;}
        /*新聞部分樣式*/
        .new_con{width:410px;height:400px;margin:0 auto;background:#e0e0e0;}
        .new_top{margin-left:5px;margin-top:2px;font-weight:bold;padding-top:15px;}
        .new_notice{width:200px;height:300px;float:left;margin-top:10px;margin-left:5px;}
        .new_news{width:200px;height:300px;float:right;margin-top:10px;margin-right:5px;}
        .new_title{font-weight:bold;margin-left:5px;}
        .notice{margin-left:20px;margin-top:15px;font-weight:bold;font-size:10px;}
        .notice span{float:right;margin-right:20px;font-weight:normal;}
        /*底部樣式*/
        .but{width:410px;height:60px;margin:0 auto;text-align:center;background:#999;
        padding-top:8px;margin-top:5px;}
    </style>
</head>
<body>
    <div id="top">
        <div id="top_right">
            <ul>
                <li><a href="index.php">首頁</a></li>
                <li><a href="about.php">關(guān)于我們</a></li>
                <li><a href="news.php">新聞資訊</a></li>
                <li><a href="product.php">產(chǎn)品展示</a></li>
                <li><a href="contact.php">聯(lián)系我們</a></li>
            </ul>
        </div>
        <div id="top_left"><img src="logo.jpg" width="50" height="50"></div>
    </div>
    <div id="cnt">
        <img src="messter.jpg" width="410px" height="100">
    </div>
    <div class="new_con">
        <div class="new_top">
            當(dāng)前位置>>新聞資訊
        </div>

        <div class="new_but">
            <div class="new_notice">
                <span class="new_title">公司公告</span>
                <?php
                    while($row = mysql_fetch_array($res)){
                ?>
                <div class="notice"><?php echo $row['title'];?>
                <span><?php echo date('y-m-d',$row['newtime']);?></span></div>
                <?php
                    }
                ?>
            </div>

            <div class="new_news">
                <span class="new_title">公司新聞</span>
                <?php
                    while($row = mysql_fetch_array($res1)){
                ?>
                <div class="notice"><?php echo $row['title'];?>
                <span><?php echo date('y-m-d',$row['newtime']);?></span></div>
                <?php
                    }
                ?>
            </div>
        </div>
    </div>
    <div class="but">地址:安徽省合肥市科學(xué)大道669號(hào)(黃山路與科學(xué)大道交口東南角) 預(yù)約電話:400-800-9558
                        備ICP 皖0219845號(hào) <p>版權(quán)所有:合肥環(huán)??萍?nbsp;All rights reserved</p>
    </div>
</body>
</html>


學(xué)び続ける
||
<?php require_once('../admin/conn.php'); $sql = "SELECT * from news where type=0 order by id desc"; $res = mysql_query($sql); ? $sql1 = "SELECT * from news where type=1 order by id desc limit 0,8"; $res1 = mysql_query($sql1); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="format-detection" content="telephone=no"> <title>新聞資訊</title> <style type="text/css"> *{margin:0px;padding:0px;} /*頭部樣式*/ #top{width:410px;height:40px;margin:0 auto;} body{background:#f0f0f0;} #to_left{float:left;} #top_right{float:right;margin-top:20px;margin-right:15px;} li{float:left;list-style:none;margin:0px 5px; padding-bottom:15px;} li a{text-decoration:none;color:#000;} li a:hover{color:red;} #cnt{width:410px;margin:0 auto;} /*新聞部分樣式*/ .new_con{width:410px;height:400px;margin:0 auto;background:#e0e0e0;} .new_top{margin-left:5px;margin-top:2px;font-weight:bold;padding-top:15px;} .new_notice{width:200px;height:300px;float:left;margin-top:10px;margin-left:5px;} .new_news{width:200px;height:300px;float:right;margin-top:10px;margin-right:5px;} .new_title{font-weight:bold;margin-left:5px;} .notice{margin-left:20px;margin-top:15px;font-weight:bold;font-size:10px;} .notice span{float:right;margin-right:20px;font-weight:normal;} /*底部樣式*/ .but{width:410px;height:60px;margin:0 auto;text-align:center;background:#999; padding-top:8px;margin-top:5px;} </style> </head> <body> <div id="top"> <div id="top_right"> <ul> <li><a href="index.php">首頁</a></li> <li><a href="about.php">關(guān)于我們</a></li> <li><a href="news.php">新聞資訊</a></li> <li><a href="product.php">產(chǎn)品展示</a></li> <li><a href="contact.php">聯(lián)系我們</a></li> </ul> </div> <div id="top_left"><img src="logo.jpg" width="50" height="50"></div> </div> <div id="cnt"> <img src="messter.jpg" width="410px" height="100"> </div> <div class="new_con"> <div class="new_top"> 當(dāng)前位置>>新聞資訊 </div> <div class="new_but"> <div class="new_notice"> <span class="new_title">公司公告</span> <?php while($row = mysql_fetch_array($res)){ ?> <div class="notice"><?php echo $row['title'];?> <span><?php echo date('y-m-d',$row['newtime']);?></span></div> <?php } ?> </div> <div class="new_news"> <span class="new_title">公司新聞</span> <?php while($row = mysql_fetch_array($res1)){ ?> <div class="notice"><?php echo $row['title'];?> <span><?php echo date('y-m-d',$row['newtime']);?></span></div> <?php } ?> </div> </div> </div> <div class="but">地址:安徽省合肥市科學(xué)大道669號(hào)(黃山路與科學(xué)大道交口東南角) 預(yù)約電話:400-800-9558 備ICP 皖0219845號(hào) <p>版權(quán)所有:合肥環(huán)??萍?All rights reserved</p> </div> </body> </html>
提出するリセットコード