Ver Mensaje Individual
  #6 (permalink)  
Antiguo 21/07/2009, 21:56
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: No graba datos en MySQL

Prueba hacer algo como:
Código php:
Ver original
  1. <?php
  2. var_dump($_POST);
  3. $contents = ob_get_clean();
  4.  
  5. $fh = fopen('test.txt', 'w');
  6. fwrite($fh, $contents);
  7. fclose($fh);

Así puedes ver las variables que se envian por POST en test.txt y poder rastrear de mejor forma.

Saludos.