My question is, will the above code affect the URL of this PHP file? I saw some website which uses session will affect the URL and I want to avoide this.
mincklerstraat
7:41 am on Nov 17, 2004 (gmt 0)
at the beginning of the page before
session_start()
, do
ini_set('session.use_only_cookies', 1);
if you want to avoid stuff appended to your url's. See [be2.php.net...] for more info.