I have a couple of static arrays.
I currently access them from (with queries of course) a MySQL database.
I am wondering if it might be faster for me to just put the array into some php code.
$pages = array("p1","p2"...);
Then use an include page where I need to access the data.
$pages[0];
Instead of running SQL querys to get the data when I need it.
Any thoughts?
Also, how bad, or is it, to put CVS values into a database field?
example: "p1,p2,p3" as the field value instead of putting each value in a seperate field.