mejor me explicas un poco:
este formulario esta en una pagina html a secas, entonces que archivos tengo que adjuntarle y que cambios hago?
muchas gracias de verdad por vuestra ayuda
Código:
<form action="/cgi-sys/guestbook.cgi" target=guestwindow onSubmit="return enviado()">
<p>
<input type="hidden" name="user" value="xxxxxxxxxx">
<input type="hidden" name="action" value="addguest">
<input type="hidden" name="basehref" value="http://xxxxx.org">
<input type="hidden" name="template" value="default">
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong><span class="Estilo15">* </span><span class="Estilo4">Nome:</span><strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /><img src="imaxes/2t3.jpg" /><img src="imaxes/2t3.jpg" /><img src="imaxes/2t3.jpg" /><img src="imaxes/2t3.jpg" /></span><span class="Estilo15">*</span></strong> <span class="Estilo17">Campos requeridos</span><br>
<input name="name" type="text" class="Estilo3" size="35"><br>
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong><span class="Estilo15">*</span><span class="Estilo4"> Email:</span><br>
<input name="email" type="text" class="Estilo3" size="35"><br>
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong><span class="Estilo4">Web:</span><br>
<input name="url" type="text" class="Estilo3" size="35">
<br>
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong><span class="Estilo15">*</span> <span class="Estilo4">Comentarios:</span><br>
<textarea name="comments" cols="35" rows="5" class="Estilo12"></textarea>
<br>
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong>
<input type="submit" class="Estilo1" value="Asinar libro">
<strong><span class="Estilo6"><img src="imaxes/2t3.jpg" /></span></strong>
<INPUT TYPE="RESET" class="Estilo1" VALUE="Borrar">
</p>
</form>
enviado() es este javascript
:
Código:
</script>
<script LANGUAGE="JavaScript">
<!-- Begin
var cuenta=0;
function enviado() {
if (cuenta == 0){
cuenta++;
return true;
}else{
alert("Libro xa asinado :-D");
return false;
}
}
// End -->
</script>