根据Mysqli

时间:2016-06-05 07:31:28

标签: php mysql mysqli

使用Mysqli,我试图区分不同类型的查询。 每个查询都有类型1或类型2.我要做的是在名为“typeonecontent”的div类中发布所有类型1的查询,在名为“typetwocontent”的div中发布所有类型2的查询。 / p>

使用此代码,我将调用所有类型1的查询,但仍然需要调用类型2,就像我说的那样。如果不复制整个代码并对每个变量进行更改,我将如何解决这个问题,因为这个底层代码块不会在这里结束?

 include_once("config.php"); //this is the database connection
    $query = "SELECT * FROM blogpages WHERE type = 1"; //selects from the table called blogpages    
    $result = mysqli_query($mysqli, $query);


    if (isset($_SESSION['username'])) //if user is logged in
    {   
    while($row = mysqli_fetch_assoc($result)) 
    {
    $pagetitle = $row['pagetitle'];
    $message = $row['message'];


    echo  //echo the content
        '<article class="typeonecontent">                       
           <div class="mct">
                <h2>
                    '.$pagetitle .'</h2>
           </div><br>
           <p class="post-text"><br>    
                    '.$message.'</p>                          
          </article> ';

0 个答案:

没有答案