|
Is the “Add a note” feature currently working in
the PHP doc pages? I’ve tried to add a note over the last few days to php.net/session_decode and php.net/header but it’s
not showing up (and I’m not getting any kind of rejection notice from a
moderator).� Any
advice? Ian. Ps. for context, this is the note for php.net/session_decode: Trying to generate a PDF using session data will break with
IE as it seems it can't cope with having cookies set as well as downloading
file data (no amount of fiddling with header settings helped me). Using the
program from "ned at wgtech
dot com" below you can get the current session without using session_start... <?php require_once("$DOCUMENT_ROOT/decodesession.php"); // // workaround to get session without setting cookies // $_SESSION = decodesession( ��� file_get_contents( ������� session_save_path() �. '/sess_' . $PHPSESSID ��� ) ); // new make PDF etc. with session data and output it... ?> |
