Re: Strange problem!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Miguel Guirao wrote:

Hello everybody out here and there,

I'm experiencing a weird problem with one of my scripts, I'm using
ob_start() in order to store the content of a web page in a string variable:

$salida=ob_get_contents();
ob_end_flush();
$doc=$rmat.".doc";
$file=fopen($doc,"w");
fputs($file,$salida);
fclose($file);

The file is actually created! But, I try to call a mail function (not the
mail built-in function) after that code in order to mail the recently
created file, but a get a blank page in the browser, just with the basic
HTML tags if a look at the source code. If a remove or comment out any code
below that, the script returns to live again.

Start putting debug code into your script(s) and see where it gets to.

This is simple but effective:

echo "In file " . __FILE__ . " got to line " . __LINE__ . "<br/>";

and see where it stops.

Check your apache error log and see if that contains any info.

(You'd get a better response from the php-general list rather than the php-db list).

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux