Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/08/2011, 06:22
Avatar de skywolker
skywolker
 
Fecha de Ingreso: julio-2011
Ubicación: España
Mensajes: 195
Antigüedad: 12 años, 9 meses
Puntos: 8
Respuesta: Dejar post con curl

Código PHP:
<?php
// create a new curl resource
$ch curl_init();

// set URL and other appropriate options
curl_setopt($chCURLOPT_URL"http://my.site.com/form.php");

// Do a POST
curl_setopt($chCURLOPT_POSTtrue);
curl_setopt($chCURLOPT_POSTFIELDS$_POST);

// grab URL, and print
curl_exec($ch);
?>