buenos dias, necesito ayuda urgente, estoy haciendo una pagina para una amiga y ya comenzo a publicitarla, luego nos dimos cuenta de q no funcionaba en el formulario la opcionde adjuntar... :S... la verdad q no se nada de php, bah, poco y nada... y necesito urgente solucionar el problema, xq es una bolsa de trabajo y la gente no puede subir su curriculum... les paso a pegar los dos archivos q puse, lo q necesitaria es q alguien me pueda completar la linea q me falta, xq intente entender todo lo q encontre en todas las paginas, y sinceramente no entiendo, y estoy en un embrolllo... x algun motivo no me toma el archivo en adjuntar... y no se xq... seguramente el error esta en el send.php... muchas graciass, muchas veces gracias a mi arroba he solucionado conflictos en el mundo del web, espero q alguien me ayude a la brevedad... por favorrrrrrrrrrrrrrrrrrrrr!! gracias....
archivo: contactenos.php
<html>
<head>
<LINK REL="SHORTCUT ICON" HREF="\favicon.ico">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>::Estudio Integral Juri:: Contactenos</title>
</head>
<body bgcolor="#FFF2FF">
<table border="0" cellpadding="0" cellspacing="0" width="421" height="466" id="table3">
<!-- MSTableType="layout" -->
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td valign="middle" height="100%">
<!-- MSCellFormattingType="content" -->
<b>
<font face="Book Antiqua" size="2">CONTÁCTENOS</font></b></td>
</tr>
<tr>
<td bgcolor="#000000" height="1" width="100%">
<img alt="" width="1" height="1" src="images/MsSpacer.gif"></td>
</tr>
</table>
</td>
<td height="24"> </td>
</tr>
<tr>
<td width="410"></td>
<td height="13" width="11"></td>
</tr>
<tr>
<td valign="top" height="429" colspan="2">
<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script Language="JavaScript" Type="text/javascript"><!--
function FrontPage_Form1_Validator(theForm)
{
if (theForm.Area.selectedIndex == 0)
{
alert("La primera opción \"Area\" no es válida. Elija una de las otras opciones." ;
theForm.Area.focus();
return (false);
}
return (true);
}
//--></script><!--webbot BOT="GeneratedScript" endspan --><form method="POST" action="send.php" enctype="multipart/form-data" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
<!--webbot bot="FileUpload" startspan S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]" S-Builtin-Fields S-Form-Fields --><input TYPE="hidden" NAME="VTI-GROUP" VALUE="0"><input TYPE="hidden" NAME="_charset_" VALUE="windows-1252"><!--webbot bot="FileUpload" endspan i-checksum="58985" -->
<p style="margin-top: 0; margin-bottom: 0">
<font size="2" face="Tahoma">Nombre </font>
<font face="Tahoma"><input type=hidden name="require" value="Nombre"><input name="Nombre" size="50">
</font></p>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Tahoma" size="2">E-mail
<input type=hidden name="require" value="EMail"><input type="text" name="EMail" size="50">
</font></p>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0">
<!--webbot bot="Validation" b-disallow-first-item="TRUE" --><select size="1" name="Area">
<option selected>Elige un área</option>
<option>Área Contable</option>
<option>Área Jurídica</option>
<option>Asesoramiento Comercial</option>
<option>Inmobiliarios</option>
<option>Fideicomiso</option>
<option>Marketing</option>
<option>Sistemas Informáticos</option>
<option>Asesoramiento Previsional</option>
<option>Comercio Exterior</option>
<option>Seguros</option>
<option>Marcas y Patentes</option>
<option>Bolsa de Trabajo</option>
</select></p>
<p style="margin-bottom: 0">
<font size="2" face="tahoma">Adjunta tu curriculum
<input name="MAX_FILE_SIZE" type="hidden" value="100000"><input type="file" name="adjunto">
</font></p>
<p style="margin-bottom: 0">
<textarea rows="13" name="Texto" cols="70" style="font-family: Tahoma; font-size: 12"></textarea>
</p>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0">
<input type="submit" value="Enviar" name="B1"></p>
</form>
</td>
</tr>
</table>
</body>
</html>
archivo: send.php
<?php
$Nombre = $_POST['Nombre'];
$EMail = $_POST['EMail'];
$Area = $_POST['Area'];
$Adjuntar = $_POST['file'];
$Texto = $_POST['Texto'];
$header = "From: [email protected]\r\n";
$mensaje = "Este mensaje fue enviado por " . $Nombre . " \r\n";
$mensaje .= "Su e-mail es: " . $EMail . " \r\n";
$mensaje .= "Va dirigido al Área " . $Area . " \r\n";
$mensaje .= "Mensaje: " . $Texto . " \r\n";
$mensaje .= "Adjunto" . $_POST['file'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = "[email protected]";
$asunto = "". $Area . " \r\n";
mail($para, $asunto, $mensaje, $header);
echo include("gracias por contactarnos.htm" ;
?>