- Home
- Categorie
- Coding e Sistemistica
- PHP
- moduli con dreamweaver
-
moduli con dreamweaver
Ciao
scusate l ingoranza ma sto muovendo i primi passi all'interno di questo immenso mondo!!!
il mio problema nasce dal fatto che devo costruire un piccolo questionario in una pagina html per poi utilizzare il link per spedirlo a diversi utenti di una newsletter.
grazie ad dreamweaver riesco a costruire il questionario grazie ai moduli ma poi non riesco ( credo a causa della necessità di utilizzare il linguaggio php) ad inviare i dati ottenuti ad un indirizzo mail..
Dai diversi pos letti dovrei aver capito di creare due pagine in php....ma quasi tutti i post si riferiscono a moduli relativi all invio di dati come nome, cognome e mail, mentre io ho a che fare con altre tipologie di moduli.......
qualcuno sa come aiutarmi????? Di seguito inserisco il codice html
(grazie in anticipo!!!)
<style type="text/css">
<!--
.Stile7 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
-->
</style>
<script type="text/javascript">
<!--
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
</head>
<body>
<table width="955" height="985" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><blockquote class="Stile7">
<p align="left"><strong>Questionnaire</strong></p>
</blockquote></td>
</tr>
<tr>
<td height="50"><blockquote class="Stile7">
<p>1.) Do you read <em>XXX</em>?</p>
</blockquote></td>
</tr>
<tr>
<form action="invia.php" method="post" name="form1" id="form1">
<td height="59">
<blockquote>
<blockquote>
<p>
<input name="QUESITO_1" type="radio" id="form1" value="YES" />
<span class="Stile7">YES</span> </p>
</blockquote>
</blockquote>
</form>
<p> </p>
</td>
</tr>
<tr>
<td height="38"><blockquote class="Stile7">
<blockquote>
<label>
<input name="QUESITO_1" type="radio" id="form2" value="NO" />
</label>
NO
</form>
</blockquote>
</blockquote></td>
</tr>
<tr>
<td height="18"> </td>
</tr>
<tr>
<td height="38"><blockquote class="Stile7">
<p>2.) Do you find the articles interesting?</p>
</blockquote></td>
</tr>
<tr>
<td height="34"><blockquote class="Stile7">
<blockquote>
<form id="form7" name="form3" method="post" action="invio.php">
<label>
<input name="QUESITO_2" type="radio" id="form3" value="YES" />
YES</label>
</form>
</blockquote>
</blockquote></td>
</tr>
<tr>
<td height="38"><blockquote class="Stile7">
<blockquote>
<form id="form9" name="form3" method="post" action="invio.php">
<label>
<input name="QUESITO_2" type="radio" id="form3" value="NO" />
NO</label>
</form>
</blockquote>
</blockquote></td>
</tr><tr>
<td> </td>
</tr>
<tr>
<td><blockquote class="Stile7">
<p>3.) What would you like to read about XXX<em></em>?</p>
</blockquote></td>
</tr>
<tr>
<td height="136"><form action="" method="post" enctype="application/x-www-form-urlencoded" name="riposta_3" class="Stile7" id="form1">
<label>
<blockquote>
<blockquote>
<p id="TESTO" name="TESTO" cols="60" rows="4">
<textarea name="QUESITO_3" id="RISPOSTA_3" cols="60" rows="4"></textarea>
</p>
</blockquote>
</blockquote>
</label>
</form> </td>
</tr>
<tr>
<td height="18"> </td>
</tr><tr>
<td height="18"> </td>
</tr>
<tr>
<td height="31"><blockquote class="Stile7">
<p>5.) How often would you like to receive XXXX? </p>
</blockquote></td>
</tr>
<tr>
<td height="45"><blockquote class="Stile7">
<blockquote>
<form id="form10" name="form8" method="post" action="invio.php">
<label>
<input name="QUESITO_5" type="radio" id="radio8" value="radio8" />
TWICE PER MONTHS </label>
</form>
</blockquote>
</blockquote></td>
</tr>
<tr>
<td height="32"><blockquote class="Stile7">
<blockquote>
<form id="form12" name="form8" method="post" action="invio.php">
<label>
<input name="QUESITO_5" type="radio" id="radio2" value="radio8" />
ONCE EVERY MONTHS</label>
</form>
</blockquote>
</blockquote></td>
</tr>
<tr>
<td height="33"><blockquote class="Stile7">
<blockquote>
<form id="form14" name="form8" method="post" action="invio.php">
<label>
<input name="QUESITO_5" type="radio" id="radio3" value="radio8" />
ONCE EVERY 3 MONTHS</label>
</form>
</blockquote>
</blockquote></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><input name="SUBMIT" type="submit" id="SUBMIT" onclick="MM_callJS(' processForm()')" value="SUBMIT" /></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>