simonpearce
ISP
Hi Folks,
I have some information passed to a script from a form.
$query->param('tlds') grabs that info which is actually made up of some checkbox information, ie
<input type="checkbox" name="tlds" value=".com">.com
<input type="checkbox" name="tlds" value=".net">.net
<input type="checkbox" name="tlds" value=".org">.org
then the script does this:
@tlds3 = $query->param('tlds');
BUT - I want to hard code the tlds into the script but this doesn't work:
@tlds3 = ".com.net.org";
Any ideas why not??
Simon
I have some information passed to a script from a form.
$query->param('tlds') grabs that info which is actually made up of some checkbox information, ie
<input type="checkbox" name="tlds" value=".com">.com
<input type="checkbox" name="tlds" value=".net">.net
<input type="checkbox" name="tlds" value=".org">.org
then the script does this:
@tlds3 = $query->param('tlds');
BUT - I want to hard code the tlds into the script but this doesn't work:
@tlds3 = ".com.net.org";
Any ideas why not??
Simon