Page 1 of 1

Sessions and SSL

Posted: Wed Jul 03, 2002 10:33 am
by goodie
I'm using a session id to track and store a unique id for users working through this app but for whatever reason the id is being set when i test it within my companies network, but when i access it from an outside computer for whatever reason it is not working.

i'm using this code ::

<?php
session_start();

if($submit){
stuff to set unique id after form has been filled out and submited ...

session_register('app_id');
$app_id = $rand_id;

}
<html>
......


on the next page I have:

<?php
session_start();
if(isset($app_id)){
// if not set skips setting up form 2 and shows a error message for the user...
?>
<html>
...


Any help would be sweet!!
thanks, goodie