crsakawolf
Erfahrenes Mitglied
Hi,
ist es möglich, das ich wenn ich einen Knopfdrücke, das aktuelle Inputfeld welches ich zuvor ausgewählt habe zu übergeben?
ist es möglich, das ich wenn ich einen Knopfdrücke, das aktuelle Inputfeld welches ich zuvor ausgewählt habe zu übergeben?
Code:
<?
echo "<script type='text/javascript'>
function underlining()
{
document.hausmitteilungsform.focus.value = document.hausmitteilungsform.ersteller.value + 'test';
}
</script>";
echo "<form action='<?$PHP_SELF?>' method='POST' name='hausmitteilungsform'>
<table border='0'>
<tr>
<td width='90'>Datum:</td>
<td><input type='text' name='datum' size='10' maxlength='10'></td>
<td width='90'>Nummer:</td>
<td><input type='text' name='nummer' size='7' maxlength='7'></td>
<td rowspan='7'>
<input style='width:40px;text-decoration:underline' onclick='underlining()' type='button' value='u'><br>
<input style='width:40px;font-weight:bold' type='button' value='b'><br>
<input style='width:40px;' type='button' value='x²'><br>
<input style='width:40px;' type='button' value='Link'><br>
<input style='width:40px;' type='button' value='Bild'>
</td>
</tr>
<tr>
<td width='90'>Ersteller:<br><font style='font-size:9px;color:red;'></font></td>
<td width=''><input type='text' name='ersteller'></td>
<td width='90'>Referat:<br><font style='font-size:9px;color:red;'></font></td>
<td><input type='text' name='referat'></td>
</tr>
<tr>
<td width='90'>An:</td>
<td colspan='3'><textarea cols='60' rows='5' name='an'></textarea></td>
</tr>
<tr>
<td width='90'>Titel:</td>
<td colspan='3'><input type='text' name='titel' size='79'></td>
</tr>
<tr>
<td width='90'>Text:</td>
<td colspan='3'><textarea cols='60' rows='15' name='text'></textarea></td>
</tr>
<tr>
<td colspan='4' align='center'>Eintrag unter 'Neues' <input type='checkbox' name='neues' value='1' checked='checked'></td>
</tr>
<tr>
<td colspan='4' align='center'><input type='submit' name='send' value='Speichern'></td>
</tr>
</table>
</form>";
if(!empty($_POST['send']))
{
echo $_POST['datum']."<br>";
echo $_POST['nummer']."<br>";
echo $_POST['ersteller']."<br>";
echo $_POST['referat']."<br>";
echo $_POST['an']."<br>";
echo $_POST['titel']."<br>";
echo str_replace("\n","<br>",$_POST['text']).'<br>';
echo $_POST['neues'].'<br>';
}
?>