From a381f91d9c29644610d37aead47298b6ea5cc038 Mon Sep 17 00:00:00 2001 From: Ant-V Date: Sun, 21 Feb 2016 14:26:30 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e10e48..969354d 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,9 @@ There is a plan to add a way to catch a phrase not translated in the xml (line 5 Feel free to change it to your needs! ####Warning -This script uses $_SESSION variables, but does not check whether it has been initialized or not, mostly because there are many cases in which you may want to manage the session before hand. +This script uses $_SESSION variables, but does not check whether it has been initialized or not, mostly because there are many cases in which you may want to manage the session before hand. If you don't, you may want to add the following on the very top of your php file: + +>if(!isset($_SESSION)) +>{ +> session_start(); +>}