如何在PHP中突出显示正确的单元格

时间:2013-10-03 22:09:01

标签: php

我正在尝试在PHP中创建一个写出表的函数,并在数据库中查找哪些单元格应该有信息。网格将始终具有相同的大小,但内容可能位于不同的位置。

我已经让它能够查看数据库,虽然它似乎只突出显示第一个单元格,而不是正确的坐标。

require("sql.php");
$sql = <<<SQL
  SELECT *
  FROM `maps`
  WHERE `objpresent` = 1
  SQL;

if(!$result = $db->query($sql)){
  die('There was an error running the query [' . $db->error . ']'); 
} // ran the query
$xobj = array();
$yobj = array();
while($row = $result->fetch_assoc()){
  //echo $row['x'] . $row['y'] . $row['object'] . '<br />';
  $xobj[] += $row['x'];
  $yobj[] += $row['y'];

}// get the rows

//find whether the row is obstructed
for($a=0; $a<=20-1; $a++) //rows (y)
  {
    for($i=0; $i<=25-1; $i++) //cols (x)
      {
        echo "<td>"; //between these write the apt content
        // if (empty($xobj[$i]) || empty($yobj[$a]) ){
        //  echo '0';
        //} //detect whether there is even a record for this space
        if(!empty($xobj[$i]))
          {
            if(!empty($yobj[$a]))
              {
                echo $xobj[$i]; //debug
                if($xobj[$i] == $i)
                  {
                    //echo $xobj[$i];
                    echo "A";
                  }
              }
          }
        //echo "<td><img src='emptysym.png'></img></td>";
        echo "</td>"; //add textual descriptions for now, add icons later
      }
    echo "</tr>";
  }

这是我当前(虽然相当混乱)的代码。 如果有一行,列x表示2,而列y表示3,那么它应该写一个字母(2,3。 是否有可能解决这个问题,或者有更好的方法吗?

1 个答案:

答案 0 :(得分:3)

使用索引为数据库中xy值的二维数组:

$xyobj = array();
while($row = $result->fetch_assoc()){
  $xyobj[$row['x']][$row['y']] = true;
}

然后你的输出循环应该是:

for ($y = 0; $y < 20; $y++) {
    echo '<tr>';
    for ($x = 0; $x < 25; $x++) {
        echo '<td>';
        if (isset($xyobj[$x][$y])) {
            echo 'A';
        }
        echo '</td>';
    }
    echo '</tr>';
}