rows rows rows. let me see your rows
This commit is contained in:
parent
7f2faec632
commit
b384627451
2 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,8 @@ if ($_GET["responded"] == 1) {
|
|||
echo("<span class=\"sentconf\">response sent!</span>");
|
||||
}
|
||||
|
||||
asort($rows);
|
||||
|
||||
echo("<h3 class=\"sect\">not responded to ({$totalUnresponded})</h3>");
|
||||
foreach (array_reverse($rows) as $i){
|
||||
if ($i["isrespondedto"] === "f" && $i["ispublic"] == "t") {
|
||||
|
|
|
@ -30,6 +30,8 @@ echo("<hr>");
|
|||
|
||||
echo("<h3 class=\"sect\">all past messages</h3>");
|
||||
|
||||
asort($rows);
|
||||
|
||||
foreach (array_reverse($rows) as $i){
|
||||
if ($i["ispublic"] === "t" && $i["isrespondedto"] === "t") {
|
||||
echo("<div class=\"question\">");
|
||||
|
|
Loading…
Reference in a new issue