-2

ヘッダー列をクリックして列をソートするコードを作成しました。ソートする列名の配列を作成してから、 and を使用して選択クエリを作成しまし$sort$order。クエリ文字列では、列名とASCまたはDESCを渡しますが、問題は空白のページに移動し、ページの名前を渡すと空白のページも表示されます。誰でもエラーを見つけるのを手伝ってもらえますか?

<?php 

function list_users() 
{    
    $y = 0;  
    $sortDefault = 'id'; 

    // select array for columns 
    $sortColumns = array('id','first_name','last_name');

    // select query with sort and orderby
    $sort = isset($_GET['sort']) && in_array($_GET['sort'], $sortColumns) ? $_GET['sort'] : $sortDefault; 
    $order = (isset($_GET['order']) && strcasecmp($_GET['order'], 'DESC') == 0) ? 'DESC' : 'ASC'; 

    $sql = "select * from contacts ORDER BY $sort $order"; 
    $result = mysql_query($sql) or die ("Can't run query because ". mysql_error()); 

  echo "<form method='post'>
       <table width='50' align='right' border='0' cellspacing='0' cellpadding='0'> 
          <tr>
              <td colspan='2' align='center' style='font-size:18px; font-weight:bold;'>"; ?>
              <?php if(isset($_SESSION['username']))
                {
                    $s="Hello,".$_SESSION["username"];
                    $r=$_SESSION["userrole"];
                    echo $s;
                }    
              echo "<a href='logout.php' id='logout'>Logout</a></td>          
          </tr> 
          </table>
       <table width='400' align='center' cellpadding='0' cellspacing='0' border='1'> 
        <tr><td colspan='2' align='center' style='font-size:18px; font-weight:bold;'>Displayed Data</td></tr> 
        <tr><td colspan='2'></td></tr> 
        <tr><td colspan='2'><a href='".$_SERVER['PHP_SELF']."?action=add'>Add a new contact</a></td></tr> 
        <tr><td colspan='2'> </td></tr>
        </table>
        <br/>
        <br/>"; 

     if (mysql_num_rows($result)){ 
     (($y % 2) == 0) ? $bgcolor = "#8FBC8F" : $bgcolor=" #9ACD32";        
       echo "<table width='400' align='center' cellpadding='0' cellspacing='0' border='1'>
       <tr style='background-color:$bgcolor;' align=center>
       <td><input type='checkbox' id='all' name='mainchk' /></td>";?>
       <td><a href='?sort=name&order=<?php echo $order == 'DESC' ? 'ASC' : 'DESC' ?>'>Name</a></td>
       <td><a href='?sort=last_name&order=<?php echo $order == 'DESC' ? 'ASC' : 'DESC' ?>'>LastName</td>
       <td>Status</td>
       <td>Action</td>
       <?php "</tr>";
      while($rows = mysql_fetch_array($result)){       

        $name   = $rows['first_name'];
        $lname  = $rows['last_name']; 
        $status = $rows['contact_status']; 
        $id     = $rows['id']; 

        ($status == 0) ? $status = "Available to contact" : $status = "Do not contact at present."; 

       echo"<tr align=center>      
        <td><input type='checkbox' value='$id' name='data[]' id='data'></td>
        <td>$name</td>
        <td>$lname</td>
        <td>$status</td>        
        <td><a href='".$_SERVER['PHP_SELF']."?action=delete&id=$id' class='confirmation'><img src='delete.png' height='16px' width='16px'></a>&nbsp;&nbsp;<a href='".$_SERVER['PHP_SELF']."?action=edit&id=$id'><img src='write.png' height='16px' width='16px'></a></td>
        <tr>"; 
        $y++;  
      }
      echo "</table>"; 

  }else{ 

    echo "<tr><td colspan='2' align='center'><b>No data found.</b></td></tr>"; 
  }
  echo"<div align='center'><input name='delete' type='submit' value='Delete' id='delete'></a></form>";
}   
?>

これは私がurl::::で得るものです

/mainpage.php?sort=first_name&order= DESCとなり、白紙のページが表示されます。

私の問題は、次の方法で呼び出される関数 list_users() によって html テーブルを表示しているということです::

if ((empty($_POST))&&(empty($_GET))) 
{ 
  list_users(); 
  die(); 
}

if 条件を削除すると、他の機能に問題が発生し、連絡先フォームがリストの下に表示されます。のみlist_user()が呼び出された場合、列を並べ替えます。

4

1 に答える 1