Alright, here's my first road block.
I'm opening up the php page through a javascript function:
var URL = "www.com/form.php?info=" + info;
var popWin = window.open(URL);
The info variable contains & signs, like this:
info = data1=abc&data2=123&data3=xyz
In the php, when I echo info, it stop at:
data1=abc
I know I've come across this before but can't remember the solution. Any ideas?
Thanks.