Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
What do you mean when you say "return red" – 32bitkid Aug 9 '12 at 9:34
1  
Where does the database get involved? ff0000 is 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
1  
Your update has not clarified these questions. We still have no idea what you're asking for. – David Hedlund Aug 9 '12 at 9:41
2  
#000000 IS the hex color. You don't need to call a server to get what you already have. – devundef Aug 9 '12 at 9:45
1  
@devundef It's basically so you can go to the hex color on this site and it'll return the hex color as the background and text. – Jamie Brittain Aug 9 '12 at 9:47
show 4 more comments

closed as not a real question by 32bitkid, casperOne Aug 9 '12 at 15:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

You can use Apache's mod_rewrite to achieve what you're looking for, or alternatively access the URL directly in PHP.

Assuming that the format of the URL Is always as you've indicated, the following will work (uses jQuery for adding the background colour, but the flow is the same).

$(function() {
    var url = document.URL,
      parts = url.split("/"),​
      color = parts[parts.length - 1];

    $('body').css('background-color', '#'+ color);
});

You will also need to update your .htaccess file as follows:

RewriteEngine On
RewriteRule ^(.*)$ /index.php?hex=$1 [T=application/x-httpd-php]
share|improve this answer
But will this work since I'm using PHP array to generate a random hex on the main domain and the background color is that the random hex color. I'd like to use that and if someone went to example.com (the random hex color)/#000000 the background and text would be #000000? – Jamie Brittain Aug 9 '12 at 9:50
Yes. This is a JavaScript solution (as per the tags in your question), and so will be run once the page has been served to the user. – BenM Aug 9 '12 at 9:51
It's not working for me. – Jamie Brittain Aug 9 '12 at 9:56
Do you have a link? Are you running jQuery? – BenM Aug 9 '12 at 10:01
Yeh I'm running jQuery. The site is called Colorrrs (colorrrs.com) but I'm running the jQuery version at test.colorrrs.com – Jamie Brittain Aug 9 '12 at 10:13
show 7 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.