You are including a file system path, not a HTTP URL, so it is treating the "?BBack=1" as part of the file name, not a URL query string. You can just include it without that part, and if it's not already in the $GET array, then set before doing the include:
$_GET['BBack'] = 1;
include('../includes/login.php');