Tag Archive | "delete"

CakePHP : Delete multiple records

Thursday, September 20, 2007

2 Comments

ShareWith CakePHP, you can remove multiple records from a database table using the deleteAll() model method. deleteAll() Usage $this -> Model -> deleteAll($conditions, $cascade = true); Lets say that you wanted to remove all the records for a specific user from the Item model. Below is a quick example. deleteAll() Example $this -> Item -> [...]

Continue reading...