]> andersk Git - sql-web.git/blob - tpl/main.php
63972b1f3ee622c0530eb9b9681b71dd9ade30cf
[sql-web.git] / tpl / main.php
1 <?php
2
3 include 'head.php';
4
5 ?>
6 <h2>Databases</h2>
7
8 <?php printErrors($err); ?>
9
10 <? if (!DEVEL && 0) { ?>
11 <p>
12 Thanks for signing up.  This interface is nearly ready.  We will e-mail you as soon as this portion of the site is ready.
13 <br />
14 <br />
15 - The MIT SQL Team
16 </p>
17 <? } else { ?>
18
19 <ul>
20 <?php
21         foreach($myDBs as $db) {
22                 
23                 echo '<li>',$db['Name'],'</li>';
24
25         }
26 ?>
27 </ul>
28
29 <form method="post">
30 <p><span style="width: 150px;"><label for="p1">new database:</label></span> <input type="text" name="newdb">
31 <input type=submit value="Add"></p>
32 </form>
33
34 <? } ?>
35 <?php
36
37 include 'foot.php';
38
39 ?>
This page took 0.024098 seconds and 3 git commands to generate.