How do I store the output of a HTML rendered text into file?
Posted: Thu Mar 27, 2008 9:10 am
Hi,
I am doing a log file, and would like to record the content of my forms each time it is processed, for testing purposes (it's PayPal's IPN, btw).
Is there anyway to store the output of this code:
Into a variable or a file?
I am doing a log file, and would like to record the content of my forms each time it is processed, for testing purposes (it's PayPal's IPN, btw).
Is there anyway to store the output of this code:
Code: Select all
echo"<pre>";
print_r($_POST);
echo "</pre>";