Hello, i wanna register vbulletin session for username called "uername" and password called "password" from another script... so how can i do that please ??
Something like this; // in your main script session_start() $_SESSION['username'] = 'somename'; $_SESSION['password'] = 'pass'; // then in your other script session_start(); $user = $_SESSION['username']; $pass = $_SESSION['password']; PHP: Hope this helped. EDIT: I didn't notice you had specified vBulletin. I'm not sure what sessions vBulletin uses, you can either use cookies or use print_r($_SESSION) to see what the session vars are.