C
|
cgphp 8/26/2013 |
If your intent is saving the connect field value in a session variable, try this code $_SESSION["connect"] = $userdata["connect"]; |
C
|
chrispa author 8/27/2013 |
If your intent is saving the connect field value in a session variable, try this code $_SESSION["connect"] = $userdata["connect"];
|
C
|
cgphp 8/28/2013 |
In the "After successful registration" event, enter the following code: CustomQuery("UPDATE your_table_name SET connect = " . $_SESSION["id"] . " WHERE connect = " . $userdata["connect"]); |