I also looked for a simple console replacement, just to flush text. So, I made this function:
function remoteLog (arg) { var file = '/files/remoteLog.php'; $.post(file, {text: arg}); }
The remote PHP file writes all the output to the database in arg . It took me 5 minutes (well, on the server side, I used a simple registration library that records and displays text messages, but still ...).
Moshe Shaham Aug 07 '12 at 8:18 2012-08-07 08:18
source share