Esempio n. 1
0
&searchString=<?php 
echo rawurlencode($query);
?>
">Next</a> 
      <a class="last" href="finduser.php?limit=<?php 
echo $limit;
?>
&page=<?php 
echo $nPages;
?>
&searchString=<?php 
echo rawurlencode($query);
?>
">&gt;&gt;</a> </div>
   <?php 
$total = makeUsersTable($query, $limit, false, $page);
?>
  
    <div class="pagination">
      <p class="showing">Showing <?php 
echo min($page * $limit, $total);
?>
 of <?php 
echo $total;
?>
</p>
        <select name="" onChange="location = this.options[this.selectedIndex].value">
        <option <?php 
if ($limit == 10) {
    echo 'selected';
}
Esempio n. 2
0
?>
</td></tr>
  <tr><td>Server Version</td><td><?php 
echo $statusDoc->version;
?>
</td></tr>
  <tr><td>Host Name</td><td><?php 
echo $statusDoc->host;
?>
</td></tr>
</table>

<h3>Organizations (<a href="editorg.php">Create</a>)</h3>
<form method="POST" action="findorg.php">
<input type="text" name="search" value=""><input type="submit" value="Find Organization">
</form>
Recently added organizations:
<?php 
makeOrgsTable("", 5, false);
?>

<h3>Users (<a href="edituser.php">Create</a>)</h3>
<form method="POST" action="finduser.php">
<input type="text" name="search" value=""><input type="submit" value="Find User">
</form>
Recently added users:
<?php 
makeUsersTable("", 5, false);
?>

</body>