Ich möchte in meine Homepage eine Umfrage einbauen.
Hab mir dabei im Internet eine kostenlose Umfrage gesucht die man selbst an sein Design anpassen kann. Hierzu hab ich eine Frage.
HTML
<html>
<head>
<title>Umfragen</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<style>
A:link {text-decoration: underline; color: #000000}
A:visited {text-decoration: underline; color: #000000}
A:active {text-decoration: none; color: #0000FF}
A:hover {text-decoration: underline overline; color: #ff0000}
.hover:link {text-decoration: underline; color: #000000}
.hover:visited {text-decoration: underline; color: #000000}
.hover:active {text-decoration: none; color: #0000FF}
.hover:hover {text-decoration: underline overline; color: #ff0000}
</style>
</head>
<body text="#000000">
<form action="http://www.xxx.de/cgi-bin/vote.cgi?id=xxx&action=voten2" method="POST">
<input type="hidden" name="daten" value="xxx">
<table style="border-style: dashed; border-width: 1px; border-color: black;" cellspacing="1" cellpadding="3" bgcolor="#cccccc" width="400" align="center">
<tr>
<td bgcolor="#eeeeee"><font face="Arial, Helvetica, sans-serif">Umfrage</font></td>
</tr>
<tr>
<td bgcolor="#eeeeee"><font size="2" face="Arial, Verdana"><input type="radio" name="vote" value="1" checked>test</font></td>
</tr>
<tr><td bgcolor="#eeeeee">
<input type="submit" value="abstimmen">
</td>
</tr>
</table>
</form>
</body>
</html>
Alles anzeigen
Klickt nun der Besucher auf abstimmen, wird automatisch die Ergebnissliste eingeblendet.
Wie schaff ich es das die Übemittlung im Hintergrund läuft und der Besucher auf eine von mir eingegebene Seite weitergeleitet wird??
Vielen Dank für Eure Tipps und Vorschläge