Thanks in advance to anyone who can help me sort this thing out...
I have this URL:
www.myweb.com/myfile.php?var=x,y
and this is what I need from my php:
$list=('x','y')
I tried
$list = "(".'$var'.")";
or
$list = split ("'", $var);
to create my $list list but I had no success.
Is this the right way to do it?
Thanks again!