Wondering how I can change the php session id from PHPSESSID to something else so that it does not interfere with other PHP scripts running on the same domain. Is this possi
session_name('mySessionName'); session_start();
Try looking at PHP's reference.