kein Zeilenumbruch nach dem Formular
mari
- html
-2 Thorsten F.0 mari
Hallo,
ich habe ein Formular für Stringsuche. Neben dem Formular will ich ein Hilfe-Button haben, der die Funktionalität des Formulars beschreibt.
Mein Problem ist, dass der Button nicht neben dem Formular angezeigt wird, sondern unter dem Formular.
Code:
<form action="search.php" method="post">
<table border="1">
<tr><td><b><h3>Search:</h3></a></b></td>
<td><input type="text" name="hostname" maxlength="40"></td>
<td><select name="list">
<option>all
<option>today
<option>last 7 days
<option>last 30 days
</select></td></tr>
<tr><td align="center" colspan="3">
<input type="submit" value="send">
<input type="reset" value="reset">
</td></tr></table>
</form>
<form action="help.php" method="post">
<input type="submit" value="Help">
</form>
Wie kann ich den Button neben den Formular positionieren??
danke im Voraus
mari
<form action="search.php" method="post">
<table border="1" align="left">
<tr>
<td>
<b><h3>Search:</h3></a></b>
</td>
<td>
<input type="text" name="hostname" maxlength="40">
</td>
<td>
<select name="list">
<option>all
<option>today
<option>last 7 days
<option>last 30 days
</select>
</td>
</tr>
<tr>
<td align="center" colspan="3">
<input type="submit" value="send">
<input type="reset" value="reset">
</td>
</tr>
</table>
</form>
<form action="help.php" method="post">
<table border="1">
<tr>
<td>
<input type="submit" value="Help">
</td>
</tr>
</table>
</form>
vielen Dank für die Antwort Thorsten!!!