Reputation: 81
I have a menu that lets you select color schemes, but i can only figure out how to do it on one page without making different links for all of the pages, is there an easier way than this?
Upvotes: 0
Views: 54
Reputation: 490263
Use a cookie, or store it in your session.
session_start();
$_SESSION['scheme'] = 'blue;
Upvotes: 4