0
votes
Whats the best way to get total # of records in a mysql table with php?
MyISAM tables already store the row count, so "SELECT COUNT(*) FROM table" on a MyISAM table simply reads that value. It doesn't scan the table or the index(es). So, it's just as fast or faster tha …
0
votes
PHP 2d Array Declaration
Another way to do it is by nesting array() functions:
$requiredFieldsByReferenceType = array(
'Book' => array('volume' => true,
…
