1 rizwank 1.1 <?php
2 require "./inc/head.php";
3 ?>
4 <?php include "./inc/doctype.php"; ?>
5 <head>
6 <?php include "./inc/charset.php"; ?>
7 <title>SSP Admin :: Dashboard</title>
8 <?php include "./inc/head_elem.php"; ?>
9 </head>
10
11 <body>
12 <div id="container">
13
14 <?php include "./inc/h1.php"; ?>
15
16 <ul>
17 <li><strong>Active Albums:</strong> <?php getCount('album'); ?></li>
18
19 <li><strong>Photos:</strong> <?php getCount('img'); ?></li>
20
21 </ul>
22 rizwank 1.1
23 <?php albumsList(); ?>
24 </div>
25
26
27 </body>
28 </html>
|