Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/09/2013, 12:21
Avatar de xXn
xXn
 
Fecha de Ingreso: abril-2013
Ubicación: Buenos Aires
Mensajes: 41
Antigüedad: 11 años, 9 meses
Puntos: 2
Enviar Formulario con CURL

Buenas,

Estoy intentando de enviar un formulario con CURL para esta pagina web:

http://www.ucema.edu.ar/cgi-bin/ddpp-alum/oferlab.pl

Por alguna razon no me deja enviar el formulario.

Esto es lo que estoy haciendo:
Código PHP:
Ver original
  1. $url = "http://www.ucema.edu.ar/cgi-bin/ddpp-alum/oferlab.pl";
  2.     $ch = curl_init();
  3.  
  4.     $data = array(
  5.         'Categoria'     => 'jovenes',
  6.         'Empresa'       => 'elGrafico',
  7.         'Puesto'        => 'Maquetador',
  8.         'Destinatario'  => '[email protected]',
  9.         'Nombre'        => 'Oscar a',
  10.         'NombreEmp'     => 'elGrafico',
  11.         'email1'        => '[email protected]',
  12.         'email2'        => '[email protected]',
  13.         'Telefono'      => '154556324'
  14.     );
  15.    
  16.     curl_setopt($ch, CURLOPT_URL, $url);
  17.     curl_setopt($ch, CURLOPT_POST,true);
  18.     curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  19.  
  20.     $response = curl_exec ($ch);
  21.     curl_close($ch);
  22.     print $ch;

Este es el form de la pagina web:
Código HTML:
Ver original
  1. <form action="/cgi-bin/ddpp-alum/oferlab.pl" method="post">
  2.     <select size="1" name="Categoria">
  3.          <option selected="" value="No selección"> - Seleccione -
  4.          </option><option value="Pasantias">Pasantías
  5.          </option><option value="Voluntariado Social">Voluntariado Social
  6.          </option><option value="jovenes"> Junior
  7.          </option><option value="senior">Senior / Semi Senior
  8.          </option><option value="ejecutivas"> Ejecutivas
  9.          </option><option value="Alumnos de Ingeniería en Informática">IT
  10.     </option></select>
  11.  
  12.     <input type="text" value="" size="35" name="Empresa">
  13.     <input type="text" value="" size="35" name="Puesto">
  14.     <textarea rows="2" cols="35" name="Requisitos"></textarea>
  15.     <textarea rows="2" cols="35" name="Perfil"></textarea>
  16.     <textarea id="Tarea" rows="2" cols="35" name="Tarea"></textarea>
  17.     <textarea rows="2" cols="35" name="Adicional"></textarea>
  18.     <input type="text" value="" size="35" name="Destinatario">
  19.  
  20.     <input type="text" value="" size="35" id="Nombre" name="Nombre">
  21.     <input type="text" value="" size="35" id="NombreEmp" name="NombreEmp">
  22.     <input type="text" value="" size="35" id="Cargo" name="Cargo">
  23.     <input type="text" value="" size="35" name="email1">
  24.     <input type="text" value="" size="35" name="email2">
  25.     <input type="text" value="" size="15" id="Telefono" name="Telefono">
  26.     <input type="submit" value="enviar" name="Submit">
  27. </form>

Veis algo que este haciendo mal?

Gracias de antenamo