1

我正在建立一个网站,该网站在一年中的几个月内使用选项卡菜单,然后在每个月/选项卡内使用手风琴菜单来列出该月发生的所有事件。

我是在填充网站时使用 PHP 的新手,并且在使代码正常工作时遇到了一些麻烦。PHP 之前的代码看起来像这样:

<div class="tabscontainer">
<div class="tabs">
    <div class="tab selected first" id="tab_menu_1">
        <div class="link">$Month</div>
        <div class="arrow"></div>
    </div>
</div>

<div class="curvedContainer">
<div class="tabcontent" id="tab_content_1" style="display:block">
    <div id="page">     
    <ul id="example4" class="accordion">
        <li>
        <h3>$EventListGoesHere</h3>
            <div class="panel loading">
                <p>Some content here.</p>
            </div>
        </li>
    </ul>
    </div>
</div>

我试过使用 while 循环,但我一直在破坏我的代码。我尝试使用的while循环是:

<?php 
// Connects to your Database 
mysql_connect("iphere", "username", "password") or die(mysql_error()); 
mysql_select_db("dbname") or die(mysql_error()); 
$data = mysql_query("SELECT * FROM MonthTable") 
or die(mysql_error()); 
while($info = mysql_fetch_array( $data )) 
{ 
Print "My code here"; 
Nested SQL code to got through events table here.   
} 
?> 

我想我的问题是,我是否走在正确的道路上,如果是这样,有人可以告诉我标准代码应该如何适应 PHP while 循环吗?

我的数据库类似于:

月表
ID | 月短 | 月长
1 | 2012年十月 | 2012 年 10 月
2 | 2012年9月 | 2012 年 9 月

事件表
ID | 月号 | 活动
1 | 1 | 婚礼
2 | 1 | 成人礼
3 | 1 | 葬礼
4 | 2 | 生日
5 | 2 | 生日
6 | 2 | 婚礼

非常感谢

4

2 回答 2

1

你可以只做一个查询。例如:

<?php

$sql = "
  SELECT
    a.id, b.id AS monthId, a.event, b.monthshort, b.monthlong
  FROM
    events_table_name AS a
  INNER JOIN
    month_table_name AS b ON b.id = a.monthId
  ORDER BY
    b.id, a.id ASC
  ";

// rest of db stuff here

$events = array();
$months = array();
while ($row = mysql_fetch_array($result)) {
  if (! isset($events[$row["monthId"]])) {
    $events[$row["monthId"]] = array();
  }
  $months[$row["monthId"]] = $row["monthlong"];
  $events[$row["monthId"]][] = $row["event"];
}

for ($x = 1; $x <= 12; $x++) {
  echo '<div class="tab" id="tab_$x">';
  if (isset($events[$x])) {
    echo '<div class="month-title">' . $months[$x] . '</div>';
    echo '<ul>';
    foreach ($events[$x] as $event) {
      echo "<li>". $event ."</li>";
    }
    echo '</ul>';
  }
  echo '</div>';
}

?>
于 2012-10-10T00:25:24.397 回答
0

你得到什么错误?那个while循环很好。研究使用 mysqli。一个标准的 mysqli 循环是:

$db=new mysqli('host','user','pass');
$q=$db->query("SELECT * FROM db.table");
while ($f=$q->fetch_assoc()) {
     print_r($f);
     // echo "<br>"; 
}

试试看,它会显示你为循环的每一行得到的数组。同样,您遇到了什么错误?

于 2012-10-10T00:44:06.267 回答