xnetworker
Grünschnabel
Ich möchte mehrere Links zur Auswahl geben über ein Formular. Der User soll einen Radiobutton aktivieren und es soll die entsprechende Seite geöffnet werden. Leider weis ich nicht wie das Script für das Onclickereignis sein soll.
Wer kann helfen?
Wer kann helfen?
PHP:
<form id="form1" name="form1" method="post" action="">
<table width="460" height="30" border="0" cellpadding="2" cellspacing="1">
<tr>
<td height="30" colspan="2">Systeme:</td>
</tr>
</table>
<table width="460" height="150" border="0" cellpadding="2" cellspacing="1" >
<tr>
<td width="98" height="30" align="left" valign="middle" >
<input name="hhhhh" type="radio" value="hhhhh.php" checked="checked" />hhhh</td>
<td align="left" valign="middle"> <a href="http://www.hhhh.de" target="_blank">Bei hhhhh anmelden</a>| <a href="http://www.hhhhh.de" target="_blank">Weitere Informationen</a>
</td>
</tr>
<tr>
<td height="30" align="left" valign="middle" >
<input name="llll" type="radio" value="lllll.php" />LLLL
</td>
<td align="left" valign="middle"> <a href="http://www.lllll.de" target="_blank">Bei llll anmelden</a> | <a href="http://www.lllll.de" target="_blank">Weitere Informationen</a>
</td>
</tr>
<tr>
<td height="30" align="left" valign="middle" >
<input name="yyyy" type="radio" value="yyyyy.php" />yyyy
</td>
<td align="left" valign="middle">
<a href="http://www.yyyyy.de/" target="_blank">Bei yyyyy anmelden</a>
|
<a href="http://www.yyyy.de/" target="_blank">Weitere Informationen</a>
</td>
</tr>
<tr>
<td height="30" align="left" valign="middle" bgcolor="#A8A8A8">
<input type="radio" value="xxxx.php" name="xxxx" />xxxxx
</td>
<td align="left" valign="middle">
<a href="http://www.xxxx.de" target="_blank">Bei xxxx anmelden</a>
| <a href="http://www.xxx.de" target="_blank">Weitere Informationen</a>
</td>
</tr>
<tr>
<td> </td>
<td height="35">
<input type="button" onClick="" value="Anmeldung fortsetzen" name="button2" width: 280px;" >
</td>
</tr>
</table>
</form>