1 %# $Id: add.mc,v 1.3 2006-09-25 15:33:38 mike Exp $
3 if ($r->param("_add")) {
4 my $host = $r->param("net.host");
5 my $port = $r->param("net.port");
6 my $db = $r->param("net.path");
7 my $id = "$host:$port/$db";
9 $m->comp("check.mc", id => $id);
13 Enter the connection details of the target you wish to add,
14 then press the <b>Add</b> button.
16 <form method="get" action="">
17 <table class="searchform">
20 <td><input type="text" name="net.host" size="40"/></td>
24 <td><input type="text" name="net.port" size="5"/></td>
28 <td><input type="text" name="net.path" size="20"/></td>
30 <tr><td colspan="2"> </td></tr>
33 <th><input type="submit" name="_add" value="Add"/></th>