summaryrefslogtreecommitdiff
path: root/installer/views/get_db_info.html.php
blob: adc775a4121a89d977734618641614fc4e35d9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php defined("SYSPATH") or die("No direct script access.") ?>
<form method="post" action="index.php?step=save_db_info">
  <fieldset>
    <legend>Database</legend>
    <p>
      We've provided values that work for most common web hosts.  If
      you have problems, contact your web host for help.
    </p>
    <br/>
    <table id="db_info">
      <tr>
        <td>
          Database Name
        </td>
        <td>
          <input name="dbname" value="<?= $dbname ?>"/>
        </td>
      </tr>
      <tr>
        <td>
          User
        </td>
        <td>
          <input name="dbuser" value="<?= $user ?>"/>
        </td>
      </tr>
      <tr>
        <td>
          Password
        </td>
        <td>
          <input name="dbpass" value="<?= $password ?>"/>
        </td>
      </tr>
      <tr>
        <td>
          Host
        </td>
        <td>
          <input name="dbhost" value="<?= $host ?>"/>
        </td>
      </tr>
      <tr>
        <td>
          Table Prefix
        </td>
        <td>
          <input name="prefix" value="<?= $prefix ?>"/>
        </td>
      </tr>
      <tr>
        <td colspan="2">
          <input type="submit" value="Continue"/>
        </td>
      </tr>
    </table>
  </fieldset>
</form>