Revision #4                                    has been created by 
 jonah                                    on Feb 16, 2009, 6:48:20 AM with the memo:
                                
                                
                                    making sure this site is XSS free                                
                                                                    « previous (#3)                                                                                                    next (#5) »                                                            
                            Changes
                            
    Title
    unchanged
    Automate timestamps in ActiveRecord models
    Category
    unchanged
    Tutorials
    Yii version
    unchanged
    
    Tags
    unchanged
    
    Content
    changed
    <script type="text/javascript">
 
/*<![CDATA[*/
 
jQuery(document).ready(function() {
 
 
 
$('p').hide();
 
 
});
 
/*]]>*/
 
</script>
 
 
There are dozens of ways to automate the setting of timestamps in yii ActiveRecord models. Two ways you can do this are
1. Via rules()
2. Via beforeSave()
To start off we need a database table.[...]