?>
</th>
    <td nowrap="true" class="primary" valign="top" colspan="10"><?php 
    echo H($mbr->getCdu_Numero());
    ?>
</th>
    <td nowrap="true" class="primary" valign="top" colspan="10"><?php 
    echo H($mbr->getCdu_Clave());
    ?>
</th>
    <td nowrap="true" class="primary" valign="top" colspan="10"><?php 
    echo H($mbr->getCdu_Table());
    ?>
</th>
  </tr>

  <?php 
}
$mbrQ->close();
?>
  </table><br>
<?php 
printResultPages($currentPageNmbr, $mbrQ->getPageCount());
?>
<br><br>
   <a href="../catalog/cdu.php" class="alt1"><?php 
echo $loc->getText("cduOtra");
?>
</a><br>
<?php 
require_once "../shared/footer.php";
        </font></td>
        <td class="primary" ><font class="small"><b><?php 
            echo $loc->getText("biblioSearchCopyStatus");
            ?>
</b>: <?php 
            echo H($biblioStatusDm[$biblio->getStatusCd()]);
            ?>
</font></td>
      </tr>
    <?php 
        } else {
            ?>
      <tr>
         <td class="primary" colspan="2" ><font class="small"><?php 
            echo $loc->getText("biblioSearchNoCopies");
            ?>
</font></td>
      </tr>
    <?php 
        }
    }
}
$biblioQ->close();
?>
  </table><br>
<?php 
printResultPages($loc, $currentPageNmbr, $biblioQ->getPageCount(), $sortBy);
?>
<br>
<?php 
require_once "../shared/footer.php";
Esempio n. 3
0
echo '<p>' . $rpt->count() . ' results found.</p>';
if ($format == 'paged') {
    printResultPages($loc, $page, ceil($rpt->count() / OBIB_ITEMS_PER_PAGE));
}
?>

<table class="resultshead">
  <tr>
      <th><?php 
echo $loc->getText("Report Results:");
?>
</th>
    <td class="resultshead">
<table class="buttons">
<tr>
<?php 
# Fill in report actions here
?>
</tr>
</table>
</td>
  </tr>
</table>
<?php 
if ($format == 'paged') {
    $rpt->pageTable($page, new Table('echolink'));
    printResultPages($loc, $page, ceil($rpt->count() / OBIB_ITEMS_PER_PAGE));
} else {
    $rpt->table(new Table('echolink'));
}
include '../shared/footer.php';