View Single Post
  #2  
Old 07-03-2013, 02:16 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 613,929
Hall of Famer is on a distinguished road
Default

Well its easy to delete certain rows, the below code gets rid of every entry that has owner as 'none' in table prefix_owned_adoptables.

PHP Code:
$mysidia->db->delete("owned_adoptables""owner = 'none'"); 
Its also super easy to get the number of rows, simply do:

PHP Code:
$count $mysidia->db->select("tablename", array(), "conditions")->rowCount(); 
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote