-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (31 loc) · 938 Bytes
/
index.php
File metadata and controls
31 lines (31 loc) · 938 Bytes
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
<pre>
<form name="database" method="POST" action="form.php">
<div>
<label for="mysqluser">User Name: </label>
<input class="form-control" name="mysqluser" type="text" value="root"/>
</div>
<div>
<label for="mysqlhost">Host Name: </label>
<input class="form-control" name="mysqlhost" type="text" value="root"/>
</div>
<div>
<label for="mysqlpass">Password: </label>
<input class="form-control" name="mysqlpass" type="password" value=""/>
</div>
<div>
<label for="dbname">Database Name: </label>
<input class="form-control" name="dbname" type="text" value=""/>
</div>
<div>
<label for="username">Database User Name: </label>
<input class="form-control" name="username" type="text" value=""/>
</div>
<div>
<label for="password">Database Password: </label>
<input class="form-control" name="password" type="password" value=""/>
</div>
<div>
<input type="submit" value="submit" "/>
</div>
</form>
</pre>