I have a simple question.
I have a script that changes a var that is sent via a URL to a different value and I need to know how to make the URL var stop overriding the value of the new var. For instance,
http://www.yoursite.com/?color=blue
Now, in the script.
if ($color == "blue") {
$color = "red";
}
I dont know why, but color always = blue if it is passed in the command line. I tried using unset($color); But that did not work. Any ideas?