J
|
Jane 8/23/2006 |
Andy, function AfterSuccessfulRegistration() { global $conn; $str = "update TableName set lingregister_date =now() where FieldName = ".$_SESSION["UserID"]; db_exec($str,$conn); }
|
A
|
andyjames author 8/23/2006 |
Hi Jane function AfterSuccessfulRegistration()
|
A
|
andyjames author 8/24/2006 |
Hi chaps, |
J
|
Jane 8/24/2006 |
Andy, function AfterSuccessfulRegistration() { global $conn; $str = "insert into ling_linguists (lingregister_date) values (now())"; db_exec($str,$conn); } |
A
|
andyjames author 8/24/2006 |
Hi Jane function AfterSuccessfulRegistration() function AfterSuccessfulRegistration()
function AfterSuccessfulLogin()
|
A
|
andyjames author 8/24/2006 |
I managed to sort it out with an if clause as follows for anyone who might be in the same predicament: function AfterSuccessfulLogin()
|