Este es un formulario de contacto:
Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/JavaScript"> <!-- function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_validateForm() { //v4.0 var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments; for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]); if (val) { nm=val.name; if ((val=val.value)!="") { if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@'); if (p<1 || p==(val.length-1)) errors+='- '+nm+' debe contener un email valido.\n'; } else if (test!='R') { num = parseFloat(val); if (isNaN(val)) errors+='- '+nm+' Debe contener un número.\n'; if (test.indexOf('inRange') != -1) { p=test.indexOf(':'); min=test.substring(8,p); max=test.substring(p+1); if (num<min || max<num) errors+='- '+nm+' Debe contener un número entre'+min+' y '+max+'.\n'; } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' es necesario.\n'; } } if (errors) alert('El siguiente error(es) ha ocurrido:\n'+errors); document.MM_returnValue = (errors == ''); } //--> </script> </head> <body> <form method="post" action="contacto_envio.php" onsubmit="MM_validateForm('mensaje','','R','nombre','','R','email','','RisEmail','codigo_verificacion','','R','preparacion','','R');return document.MM_returnValue"> <table width="505" style="" align="center" > <tr> <input name="nombre" type="text" size="35" value="<? echo $_GET['nombre']; ?>"style="color:000000;font-weight:bold;border-style: outset; border-width: 4px; border-color:#710000;background:#ffffff;height:22px;font-size:12pt;text-align: center"/> </tr> <tr> <td colspan="4"> <input name="email" type="text" size="35" value="<? echo $_GET['email']; ?>"style="color:000000;font-weight:bold;border-style: outset; border-width: 4px; border-color:#710000;background:#ffffff;height:22px;font-size:12pt;text-align: center"/> </tr> <tr> <td colspan="4"> </tr> <tr> <input type="text" name="codigo_verificacion" style="width: 50px;" /> </div> </td> </tr> <tr> <input type="reset" name="enviar2" value="Borrar datos" style="color:000000;font-weight:bold;border-style: outset; border-width: 4px; border-color:#710000;background:#ffffff;font-size:12pt;"/> <input type="submit" name="enviar" value="Enviar Mensaje" style="color:000000;font-weight:bold;border-style: outset; border-width: 4px; border-color:#710000;background:#ffffff;font-size:12pt;"/> </tr> </table> </form> </body> </html>
Y este otro genera un calendario para denerar una fecha:
Código HTML:
Ver original
<head> <script language="javascript" src="cal2.js"> /* Xin's Popup calendar script- Xin Yang (http://www.yxscripts.com/) Script featured on/available at http://www.dynamicdrive.com/ This notice must stay intact for use */ </script> </head> <body> <form name="sampleform"> </form> </body> Se trata de incluir en el calendario en el formulario de contacto. Al hacerlo "sumando" los dos a lo bestia, no funciona. Alguna idea?