Hi
I have a requirement to show three different types stats on the home page of a website. These are controlled/managed by an admin. For example, these are,
type A items - 1200,
type B items - 4500,
blah items - 1800
I can just create a table, homepage_stats (id, first_field, second_field, third_field). Then on homepage SELECT first_field as type_a_item etc etc from homepage_stats and display whereever I want to display it. An admin user can anytime update these values. Is there any better way to do this. I mean without using tables or anyother?? what would you suggest?
Thanks all.