How can I get the number of example records:
count (id) = 20
I need an array with total values = [1,2,3,4 --- 20]
so that if I have:
x id number can count them regardless of their value id = [1,2,3,4,5,6,7,8,9 ... 14]
you can do this:
Inquiry
SELECT COUNT(id) as RowCounter FROM fooTable;
how to print it:
echo $Result['RowCounter'];