For example:
- Code: Select all
// Define Category Weights
define('WEIGHT_LOW', 1);
define('WEIGHT_MED', 2);
define('WEIGHT_HIGH',3);
When I use a form to assign a weight, let's say 'WEIGHT_MED', what's stored in the database? WEIGHT_MED or 2?
If we decide to change the value of the weighting system later, I want to make sure it's not storing the defined numbers.
Thanks,
Tim





