Recently, I asked this under HTTP and got nowhere. Now I have more data after doing some testing in PHP, so the question should fit better here this time.
I run affiliate based business and I use PHP scripting to put together the data that I pass to sales report (like SID in CJ).
The data is comprised from things like search query, referring URL, my own data from PPC, and so on.
The end result is like this ("v" for variable):
$total= "$v1-$v2-$v3-$v4";
When this shows up in reports and I download it into Excel, I use the hyphen sign (minus) to convert text to columns so I get it nicely divided to do sorting, analysis, etc.
The problem is that "-" is sometimes a part of some of the variables. I can;t use plus sign (+) as that one is already representing a space in search queries.
I tried something like % or $, but they get converted into %25 and so on which I don't like.
Then I thought I would use two characters like QQ (unlikely to show up in any of the variables) but to my surprise, I got the last variable only at my end.
Why the other variables got cut off? I don't understand then regular characters get passed with no trouble, but my "QQ" messed it up?
I'm really curious to know this.
Finally, is there anything else besides + or - that I could use? I guess I'll have to use something like "--" or "+-" unless I learn something new there like I've learned with QQ.
Thanks