Re: problem to updating last_login using save()

2008-01-22 Thread AD7six



On Jan 22, 9:47 am, Rgarg [EMAIL PROTECTED] wrote:
 i am trying to update field 'last_login' in table 'users' like this :

  $someone = $this-User-findByUsername($this-data['User']
 ['username']);
  $this-Session-write('last_login', $someone['User']
 ['last_login']);
  $someone['User']['last_login'] = date(Y-m-d H:i:s);
 $this-User-save($someone);

 it is not working. Please tell me what to do?

You could:
a) look at the sql debug log
b) explain /in what way/ it's not working
c) add var_dump ($this-User-id); before your save - that's the id of
the row that's going to get updated; if it's not the id of he user
$someone, they aren't going to get updated ;)

hth,

AD
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: problem to updating last_login using save()

2008-01-22 Thread Rgarg

in database last_login is not going to change. i hv also use
pr($someone)
it contain all values but not reflecting in database.

On Jan 22, 2:13 pm, AD7six [EMAIL PROTECTED] wrote:
 On Jan 22, 9:47 am, Rgarg [EMAIL PROTECTED] wrote:

  i am trying to update field 'last_login' in table 'users' like this :

   $someone = $this-User-findByUsername($this-data['User']
  ['username']);
   $this-Session-write('last_login', $someone['User']
  ['last_login']);
   $someone['User']['last_login'] = date(Y-m-d H:i:s);
  $this-User-save($someone);

  it is not working. Please tell me what to do?

 You could:
 a) look at the sql debug log
 b) explain /in what way/ it's not working
 c) add var_dump ($this-User-id); before your save - that's the id of
 the row that's going to get updated; if it's not the id of he user
 $someone, they aren't going to get updated ;)

 hth,

 AD

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---