I want to store all HEX colors in a MySQL database so say someone was to go on example.com/ff0000 it would return red (replace example.com with my domain).
Is there an easier way?
Update
What I basically want to do is for someone to go to the URL example.com/ff0000 or example.com/#ff0000 and will then add that color (whatever is in the URL) as a background color and display text as well.
For example, I go to example.com/000000 and the background color is #000000 showing text which says "#000000".
How can I grab the hex value from the URL to make that work?
I'm using PHP for the backend.
ff0000is the hex value. Couldn't you just return whatever is in the url? Extrapolating from there, couldn't you just skip the call to that server altogether, if you need the value in order to make that call that yields that value? – David Hedlund Aug 9 '12 at 9:36