Changeset 104
- Timestamp:
- Sep 14, 2003, 6:12:27 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/identification.php
r87 r104 96 96 } 97 97 //-------------------------------------------------------------- visit as guest 98 if ( $conf['acces '] == "libre")98 if ( $conf['access'] == 'free' ) 99 99 { 100 100 $vtp->addSession( $handle, 'guest_visit' ); … … 102 102 } 103 103 //---------------------------------------------------------------- registration 104 if ( $conf['acces '] == "libre")104 if ( $conf['access'] == 'free' ) 105 105 { 106 106 $vtp->addSession( $handle, 'register' ); … … 110 110 $code = $vtp->Display( $handle, 0 ); 111 111 echo $code; 112 //------------------------------------------------------------ log informations113 $query = 'insert into '.PREFIX_TABLE.'history';114 $query.= '(date,login,IP,page) values';115 $query.= "('".time()."', '".$user['pseudo'];116 $query.= "','$REMOTE_ADDR','identification');";117 $result = mysql_query( $query );118 112 ?>
Note: See TracChangeset
for help on using the changeset viewer.