I'm not even sure what to call this other than odd thing. I have a place in a php program where I had used a variable $csym= chr(128) to print out a Euro symbol I used the variable so I could switch between euro and $. If I have it in an included file or I set it in the program as $csym=chr(128) it prints fine, however, I moved all my configs to a mysql table which I load into an array when I start the program. Now it prints chr(128) can anyone tell me why? I am echoing $cnfig['csym'] where csym is the key in the array and the value is chr(128)
I don't get why it doesn't print the symbol now.