Hi,
I have a problem with a list, hope you can help me solving it.
I have this URL:
www.website.com/file.php?var=
and this is my php file:
$list="("."'".$var."'".")";
This is the result:
If var=text1 the result is $list=('text1')
but if var=text1,text2 the result is $list=('text1,text2')
I need this result
$list=('text1','text2')
What can I do?
Thank you for your help!