Retrive unchanged data
- by cnkt
How can i get the Doctrine_Record's unchanged version of field data. For example;
echo $user->username; // Prints 'David'
$user->username = 'John';
echo $user->username; // Prints 'John'
How to get the pre-changed value (David)?