if(!session_is_registered){
session_start();
$cust_id = "session_id()";
session_register("cust_id");
}
this shows up in the url of my page, making the detail page useless. I pass the key variable in the url in the go to detail page behavior.
This is a detail page I am trying to code, so if there is no session started, it starts and registers the session id as the cust_id variable.
I will use the cust_id variable to filter records on the shopping cart page, based on the cust_id in the quote table, a record which gets created with the insert record behavior.
What am I doing wrong?!?!?! I'm going absolutely nuts on this problem!!!!!!!!!!!!!!!!!