Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Invalid Syntax

Status
Not open for further replies.

catalystcommercial

Technical User
Oct 6, 2005
53
GB
I have created a form which calls a perl script but when I click on submit I get an invalid syntax error displayed in the browser

here is the code

"#!/usr/bin/perl


##############################################################
## PNet.pl - a script to send formatted GoldMine Web Import
## data.
##
## Written by JCS
##
## Please make sure that you have set up Perl for use on your
## web machine before attempting to use this script.
##
## Disclaimer: Although we've tried to make this script as
## straightforward as possible, you will probably
## have to make changes to it to get it to work.
## FrontRange makes no claims as to the
## guarantees that this code will function.
##
##############################################################


print "Content-type: text/html\n\n";
$Body = "";
$XML = "";
$strDecodeTemp = "";
$smtp_server = "192.168.0.77";
$reply_from_name = "Web Import";
$sendto = "chris.hurcombe\@catalyst-commercial.co.uk"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$versionnumber = "Version 1.0";

if($ENV{'REQUEST_METHOD'} eq "GET") {
&nopost;
}else{
&get_form_data;
&main;
}

sub HTMLEncode
{
$strDecodeTemp =~ s|\&|\&amp\;|g;
$strDecodeTemp =~ s|<|\&lt\;|g;
$strDecodeTemp =~ s|>|\&gt\;|g;
$strDecodeTemp =~ s|\"|\&quot\;|g;
return $strDecodeTemp;
}
sub get_form_data
{

read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
@pairs=split(/&/,$buffer);
foreach $pair (@pairs)
{
@a = split(/=/,$pair);
$name=$a[0];
$value=$a[1];
$name =~ s/\+/ /g;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$value =~ s/~!/ ~!/g;
$value =~ s/\+/ /g;
$value =~ s/(\r)+/\-\-/g;
$value =~ s/\n+//g;
$value =~ s/(\-\-)+/\n/g;
$value =~ s|\&|\&amp\;|g;
$value =~ s|<|\&lt\;|g;
$value =~ s|>|\&gt\;|g;
$value =~ s|\n|<br>\n|g;

push (@formdata,$name);
push (@formdata,$value);
push (@form,$nameform);
push (@form,$valueform);
push (@formname,$name);
push (@formvalue,$value);


}
%formname=@formname;
%formname;
%formvalue=@formvalue;
%formvalue;
%formdata=@formdata;
%formdata;


}

sub Decode
{
$intX = 0;
$intY = 0;
$intMod =0;
$intTemp = 0;
$intY = 0;
$strValueOut="";
$intL = length($strDecodeTemp);
for ($intX=1; $intX<=($intL/4); $intX++)
{
$Modulus = $intX % 2;
$strTemp="";
$strMod="";
if ($Modulus == 0)
{
$strMod = substr(substr($strDecodeTemp,$intY,4),0,2);
$strTemp = substr(substr($strDecodeTemp,$intY,4),length(substr($strDecodeTemp,$intY,4))-(2));
}
else
{

$strMod = substr(substr($strDecodeTemp,$intY,4),length(substr($strDecodeTemp,$intY,4))-(2));
$strTemp = substr(substr($strDecodeTemp,$intY,4),0,2);
}

$intMod=hex($strMod);
$intTemp=hex($strTemp);
$intTemp=$intTemp-$intMod;
$strValueOut=$strValueOut.chr($intTemp);
$intY= $intY + 4;
}
return $strValueOut;

}


sub main
{

$strDecodeTemp = $formdata{'SMTP'};
$smtp_server = &Decode;
$strDecodeTemp = $formdata{'SendToEmail'};
$sendto=&Decode;
$strDecodeTemp= $formdata{'OnNewSendGMEmail'};
$OnNewSendGMEmail =&Decode;

$strDecodeTemp= $formdata{'OnDUPSendGMEmail'};
$OnDUPSendGMEmail =&Decode;

$strDecodeTemp= $formdata{'OnNewAttachTrack'};
$OnNewAttachTrack =&Decode;

$strDecodeTemp= $formdata{'OnDupAttachTrack'};
$OnDupAttachTrack =&Decode;

$strDecodeTemp= $formdata{'Word'};
$Password =&Decode;

$strDecodeTemp= $formdata{'DupLogic'};
$DupLogic =&Decode;

$OutputAs = $formdata{'OutPutAs'};
$DuplicateCount=0;
$XML = "<gmdata>";
if ($formdata{'DuplicateCount'}ne '')
{
$DuplicateCount =$formdata{'DuplicateCount'};
}

if ($DuplicateCount >0 || $OnNewSendGMEmail ne '' || $OnDUPSendGMEmail ne '' ||
$OnNewAttachTrack ne '' || $OnDupAttachTrack ne '')
{
$Body = $Body."[Instructions]\n";
$XML = $XML."<Instructions>";
if ($DuplicateCount > 0)
{
$RealCount=0;
for ($indexval = 0; $indexval < @formvalue; $indexval++)
{
${'myname'} = $formname[$indexval];
$myname = $formname[$indexval];
${'myvalue'} = $formvalue[$indexval];

if(length($myname)> 17)
{
$name = substr($myname,0,17);
if ($name eq "DuplicateChecking")
{
$RealCount = $RealCount + 1;
$Body = $Body."DupCheck".$RealCount."=".$myvalue."\n";
$strDecodeTemp = $myvalue;
$myvalue = HTMLEncode;
if ($myvalue eq "EMAIL")
{
$XML = $XML."<DupCheck>EA1</DupCheck>";
}
elsif ($myvalue eq "WEBSITE")
{
$XML = $XML."<DupCheck>WS1</DupCheck>";
}
else
{
$XML = $XML."<DupCheck>".$myvalue."</DupCheck>";
}
}
}
}
if($DupLogic ne '')
{
$Body = $Body."DupLogic=OR\n";
}

}

if ($OnNewSendGMEmail ne '')
{
$Body = $Body."OnNewSendGMEmail=".$OnNewSendGMEmail."\n";
$strDecodeTemp = $OnNewSendGMEmail;
$OnNewSendGMEmail = HTMLEncode;
$XML = $XML."<OnNewSendGMEmail>".$OnNewSendGMEmail."</OnNewSendGMEmail>";

}
if ($OnDUPSendGMEmail ne '')
{
$Body = $Body."OnDUPSendGMEmail=".$OnDUPSendGMEmail."\n";
$strDecodeTemp = $OnDUPSendGMEmail;
$OnDUPSendGMEmail = HTMLEncode;
$XML = $XML."<OnDupSendGMEmail>".$OnDUPSendGMEmail."</OnDupSendGMEmail>";

}
if ($OnNewAttachTrack ne '')
{
$comma =index($OnNewAttachTrack, ",",0);
$Body = $Body."OnNewAttachTrack=".$OnNewAttachTrack."\n";
if ($comma eq -1)
{
$strDecodeTemp = $OnNewAttachTrack;
$OnNewAttachTrack = HTMLEncode;
$XML = $XML."<OnNewAttachTrack>".$OnNewAttachTrack."</OnNewAttachTrack>";
}
else
{
($track, $user) = split(/,/, $OnNewAttachTrack);
$strDecodeTemp = $track;
$track = HTMLEncode;
$strDecodeTemp = $user;
$user = HTMLEncode;
$XML = $XML."<OnNewAttachTrack User=".chr(34).$user.chr(34).">".$track."</OnNewAttachTrack>";
}
}
if ($OnDupAttachTrack ne '')
{
$comma =index($OnDupAttachTrack, ",", 0);
$Body = $Body."OnDupAttachTrack=".$OnDupAttachTrack."\n";
if ($comma eq -1)
{
$strDecodeTemp = $OnDupAttachTrack;
$OnDupAttachTrack = HTMLEncode;
$XML = $XML."<OnDupAttachTrack>".$OnDupAttachTrack."</OnDupAttachTrack>";
}
else
{
($track, $user) = split(/,/, $OnDupAttachTrack);
$strDecodeTemp = $track;
$track = HTMLEncode;
$strDecodeTemp = $user;
$user = HTMLEncode;
$XML = $XML."<OnDupAttachTrack User=".chr(34).$user.chr(34).">".$track."</OnDupAttachTrack>";
}


}
if ($Password ne '')
{
$Body = $Body."Password=".$Password."\n";
$strDecodeTemp = $Password;
$Password = HTMLEncode;
$XML = $XML."<Password>".$Password."</Password>";

}

if($DupLogic ne '')
{
$XML = $XML."<DupLogic>OR</DupLogic>";
}
else
{
$XML = $XML."<DupLogic>AND</DupLogic>";
}



$XML = $XML."</Instructions>";
}
$Body = $Body."[Data]\n";
$XML = $XML."<accounts><account>";

$Phone = "";
$EA = "";
$WS = "";
$PR = "";




for ($indexval = 0; $indexval < @formvalue; $indexval++)
{
${'myname'} = $formname[$indexval];
$myname = $formname[$indexval];
${'myvalue'} = $formvalue[$indexval];


if ($myname ne "GMsubmit" && $myname ne "SMTP" && $myname ne "OnNewSendGMEmail" &&
$myname ne "OnDUPSendGMEmail" && $myname ne "OnNewAttachTrack" &&
$myname ne "OnDupAttachTrack" && $myname ne "SendToEmail" && $myname ne "DuplicateCount" && $myname ne "Word" &&
$myname ne "OutPutAs" && (substr($myname, 0, 17) ne "DuplicateChecking" && $myname ne "DupLogic" && substr($myname, 0, 7) ne "pretty_" ))
{

if($myvalue ne '')
{

$Body = $Body.$myname."=".$myvalue."\n";
$strDecodeTemp = $myvalue;
$myvalue = HTMLEncode;

if ((substr($myname,0,5) ne "PHONE") && ($myname ne "FAX") && ($myname ne "EMAIL") && ($myname ne "WEBSITE"))

{

$PR = $PR."<property name=".chr(34).$myname.chr(34)." db_name=".chr(34).$myname.chr(34).">";
$PR = $PR."<property_string>".$myvalue."</property_string>";
$PR = $PR."</property>";
}
else
{
if(substr($myname,0,5) eq "PHONE")
{
$Phone = $Phone."<phone international=".chr(34)."0".chr(34)." type=".chr(34).$myname.chr(34)." source_fld=".chr(34).$myname.chr(34).">";
$Phone = $Phone."<properties><property name=".chr(34)."phone_number".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$Phone = $Phone."</phone>";
}
elsif (substr($myname,0,3) eq "FAX")
{
$Phone = $Phone."<phone international=".chr(34)."0".chr(34)." type=".chr(34).$myname.chr(34)." source_fld=".chr(34).$myname.chr(34).">";
$Phone = $Phone."<properties><property name=".chr(34)."phone_number".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$Phone = $Phone."</phone>";
}
elsif (substr($myname,0,7) eq "WEBSITE")
{
$WS = $WS."<website primary=".chr(34)."1".chr(34)." id=".chr(34)."WS1".chr(34).">";
$WS = $WS."<properties><property name=".chr(34)."web_site".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$WS = $WS."</website>";
}
elsif (substr($myname,0,5) eq "EMAIL")
{
$EA = $EA."<email primary=".chr(34)."1".chr(34)." id=".chr(34)."EA1".chr(34).">";
$EA = $EA."<properties><property name=".chr(34)."email_address".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$EA = $EA."</email>";
}
}
}
}
}

if ($PR ne '')
{
$XML = $XML."<properties>".$PR."</properties>";
}
if($Phone ne '')
{
$XML = $XML."<phone_numbers>".$Phone."</phone_numbers>";
}
if($EA ne '')
{
$XML = $XML."<emails>".$EA."</emails>";
}
if($WS ne '')
{
$XML = $XML."<websites>".$WS."</websites>";
}
$XML = $XML."</account></accounts></gmdata>";

print("<!--\n\n".$XML."\n\n".$Body."\n\n-->");

$msgSubject = "Web Import";
$msgMessage = "";
if ($OutputAs eq "INI")
{
$msgMessage = $Body;
}
else
{
$msgMessage = $XML;
}

eval { require(Net::SMTP)};
if ($@)
{
print "Net::SMTP Failed to load. Please make sure that you have the NET:SMTP module from <a href=\" target=\"_new\">CPAN</a>.";
exit;
}

$smtp = Net::SMTP->new($smtp_server);
$smtp->mail("no-reply@frontrange.com");
$smtp->to ($sendto);
$smtp->data();
$smtp->datasend("To: ".$sendto."\n");
$smtp->datasend("From: GoldMine WebImport<no-reply\@frontrange.com>\n");
$smtp->datasend("Subject: $msgSubject\n");
$smtp->datasend("Content-Type: text/x-gm-impdata");
$smtp->datasend("\n\n");
$smtp->datasend($msgMessage."\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->dataend(); # Finish sending the mail #
$smtp->quit; # Close the SMTP connection #

&success;


}


sub nopost
{


print <<"MYMAINtext";

<html>

<head>
<title>D'oh!</title>
</head><body bgcolor="#cfcfcf">
<center>


<table width=500 border=1><tr><td bgcolor="#000080">
<br><br>
<font face="Arial" color="#ffffff">
<center>Error occured. Must be POST instead of GET.
</center></font>
<br><br>
</td></tr></table>
</center>

</body></html>

MYMAINtext

exit;

}

sub success
{



print <<"Myformatsuccess";

<html>
<head>
<title>Thank You.</title>
</head>
<body>
<BR><BR><CENTER>
<h2>Your form has been submitted successfully!</h2>


</CENTER>



</body>
</html>

Myformatsuccess


exit;

}
 
I copied your source code into a file (syntax.pl) and checked its syntax using perl, like this:

perl -c syntax.pl

The syntax appears to be ok as far as perl is concerned, I suggest you look again at the way the script is being called.

Mike

I am not inscrutable. [orientalbow]

Want great answers to your Tek-Tips questions? Have a look at faq219-2884

 
invalid syntax? which syntax? perl or xml or html? Normally a perl syntax error will display a 500 internal server error in the browser, and the above script would since it's not using CGI::Carp or other method to display the details of the error in the browser.
 
this is the html code that calls the script

Also, if you goto you will see the error

Code:
&lt;html&gt;&lt;head&gt;&lt;title&gt;GoldMine Import Generated 
Page&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;form 
action=&quot;htpp://[URL unfurl="true"]www.catalyst-commercial.co.uk/cheese/PNET.pl&quot;[/URL] 
name=&quot;frmGMGenerated&quot; id=&quot;frmGMGenerated&quot; method=&quot;POST&quot; 
target=&quot;_self&quot;&gt;&lt;p&gt;Address1: &lt;input type=&quot;text&quot; id=&quot;ADDRESS1&quot; 
name=&quot;ADDRESS1&quot; maxlength=&quot;40&quot; size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;County: 
&lt;input type=&quot;text&quot; id=&quot;STATE&quot; name=&quot;STATE&quot; maxlength=&quot;20&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Full Name: &lt;input type=&quot;text&quot; id=&quot;CONTACT&quot; 
name=&quot;CONTACT&quot; maxlength=&quot;40&quot; size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;E-mail: 
&lt;input type=&quot;text&quot; id=&quot;EMAIL&quot; name=&quot;EMAIL&quot; maxlength=&quot;35&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Source Code: &lt;input type=&quot;text&quot; 
id=&quot;SOURCE&quot; name=&quot;SOURCE&quot; maxlength=&quot;20&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;City: &lt;input type=&quot;text&quot; id=&quot;CITY&quot; 
name=&quot;CITY&quot; maxlength=&quot;30&quot; size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Address2: 
&lt;input type=&quot;text&quot; id=&quot;ADDRESS2&quot; name=&quot;ADDRESS2&quot; 
maxlength=&quot;40&quot; size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Partner Code: &lt;input 
type=&quot;text&quot; id=&quot;KEY3&quot; name=&quot;KEY3&quot; maxlength=&quot;20&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Country: &lt;input type=&quot;text&quot; id=&quot;COUNTRY&quot; 
name=&quot;COUNTRY&quot; maxlength=&quot;20&quot; size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Post Code: 
&lt;input type=&quot;text&quot; id=&quot;ZIP&quot; name=&quot;ZIP&quot; maxlength=&quot;10&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;p&gt;Phone Number: &lt;input type=&quot;text&quot; 
id=&quot;PHONE1&quot; name=&quot;PHONE1&quot; maxlength=&quot;25&quot; 
size=&quot;30&quot;/&gt;&lt;/p&gt;&lt;input type=&quot;hidden&quot; id=&quot;OnNewSendGMEmail&quot; 
name=&quot;OnNewSendGMEmail&quot; value=&quot;7C3901498B39115A7421&quot;/&gt;&lt;input 
type=&quot;hidden&quot; id=&quot;OnDUPSendGMEmail&quot; name=&quot;OnDUPSendGMEmail&quot; 
value=&quot;722F0E569240145D923F&quot;/&gt;&lt;input type=&quot;hidden&quot; 
id=&quot;OutPutAs&quot; name=&quot;OutPutAs&quot; value=&quot;XML&quot;/&gt;&lt;input 
type=&quot;hidden&quot; id=&quot;OnNewAttachTrack&quot; name=&quot;OnNewAttachTrack&quot; 
value=&quot;7936198E9C29198DAF401C898C2706785434015895300B778C29
107FA83B0469&quot;/&gt;&lt;input 
type=&quot;hidden&quot; id=&quot;SMTP&quot; name=&quot;SMTP&quot; 
value=&quot;623109425D2B1A486736093F622A1E4C5A2A0E3
C6A330C43&quot;/&gt;&lt;input 
type=&quot;hidden&quot; id=&quot;SendToEmail&quot; name=&quot;SendToEmail&quot; 
value=&quot;A63F0574912504688D271685AC3A1E8B7131197C9A39027686250
6729A211184AE3A15428F2C01708F220F7CA54003758F2C0972A03F0773
6537177A97280D3BAA350671&quot;/&gt;&lt;p&gt;&lt;input 
type=&quot;Reset&quot; id=&quot;Reset&quot; name=&quot;Reset&quot; value=&quot;Reset&quot;/&gt;&lt;input 
type=&quot;submit&quot; id=&quot;GMsubmit&quot; name=&quot;GMsubmit&quot; 
value=&quot;Submit&quot;/&gt;&lt;/p&gt;&lt;/form&gt;&lt;/body&gt;&lt;/html&gt;

&lt;script language=&quot;JavaScript&quot; 
type=&quot;text/JavaScript&quot;&gt;function MM_findObj(n, d) {var 
p,i,x;if(!d) 
d=document;if((p=n.indexOf(&quot;?&quot;))&gt;0&amp;&amp;parent.frames.length) 
{d=parent.frames[n.substring(p+1)].document; 
n=n.substring(0,p);}if(!(x=d[n])&amp;&amp;d.all) x=d.all[n];for 
(i=0;!x&amp;&amp;i&lt;d.forms.length;i++) 
x=d.forms[i][n];for(i=0;!x&amp;&amp;d.layers&amp;&amp;i&lt;d.layers.length;i++) 
x=MM_findObj(n,d.layers[i].document);if(!x &amp;&amp; 
d.getElementById) x=d.getElementById(n); return x;}

function MM_validateForm() {var 
i,p,q,nm,test,num,min,max,errors=',args=MM_validateForm.
arguments;for 
(i=0; i&lt;(args.length-2); i+=3) { test=args[i+2]; 
val=MM_findObj(args[i]);if (val) { nm=val.name; if 
((val=val.value)!=&quot;&quot;) {if (test.indexOf('isEmail')!=-1) { 
p=val.indexOf('@');if (p&lt;1 || p==(val.length-1)) errors+='- 
'+nm+' must contain an e-mail address.\n';} else if 
(test!='R') { num = parseFloat(val);if (isNaN(val)) 
errors+='- '+nm+' must contain a number.\n';if 
(test.indexOf('inRange') != -1) { 
p=test.indexOf(':');min=test.substring(8,p); 
max=test.substring(p+1);if (num&lt;min || max&lt;num) errors+='- 
'+nm+' must contain a number between '+min+' and 
'+max+'.\n';} } } else if (test.charAt(0) == 'R') errors += 
'- '+nm+' is required.\n'; }} if (errors) alert('The 
following error(s) 
occurred:\n'+errors);document.MM_returnValue = (errors == 
');}&lt;/script&gt;
 
http, tim, :) I'd suggest you're looking at this too long?;-)
 
Hi Paul

Cant believe how dippy I was, however I have changed it and uploaded the new file, but it still says page cannot be displayed
 

This is where you're pointing the form to, though the script should most likely be in the cgi-bin directory, or some similarly set up directory.

Change the action of the form to a correct scripts directory, and move the script to that directory, ensure it has the correct execution properties, and let us knwo how you get on

--Paul
 
Spoke to my hosts support team, they said that the permissions were ok and the scripts can be in any directory, he did say that the action in my form was looking for PNET.pl but the file was called pnet.pl, so I changed this, I now get an internal server error

Tim
 
Tim,

we need to know a little more detail than just an error

check your webservers error logs, typically /var/log/httpd/error_log, or it could be in your cpanel hosting account.

Alternatively, you could try adding this line to the top of your script

Code:
use CGI::Carp qw /fatalsToBrowser/;
before printing the "Content-Type" line

--Paul

Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
I now get the error "must be POST not GET" when I try and submit

Both the perl and the html scripts are POST

Perl:

print "Content-type: text/html\n\n";
$Body = "";
$XML = "";
$strDecodeTemp = "";
$smtp_server = "192.168.0.77";
$reply_from_name = "Web Import";
$sendto = "chris.hurcombe\@catalyst-commercial.co.uk"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$versionnumber = "Version 1.0";

if($ENV{'REQUEST_METHOD'} eq "GET") {
&nopost;
}else{
&get_form_data;
&main;

HTML:

<html><head><title>GoldMine Import Generated
Page</title></head><body><form
action="htpp://name="frmGMGenerated" id="frmGMGenerated" method="POST"
target="_self"><p>Address1: <input type="text" id="ADDRESS1"
name="ADDRESS1" maxlength="40" size="30"/></p><p>County:
 
I know the perl script says GET but I copied it from above, that was the old version!!!!!
 
the generated error message is in the perl script, so its my perl script that is running the error, but the code is POST in both.....I dont understand!"£!!£"!
 
Paul

Finally got it working!!!!!

Only need to redirect the perl script to a thankyou page, I have put a redirect tag into my form but this isnt working

any ideas?
 
Not submitting for me at present


Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Hi Paul

getting frustrated now, when I submit my form it finds pnet.pl (after a long time) but nothing is recieved by us via email

Can you look at the perl and html codes for me, sorry to be a pain

This is the perl code:

#!/usr/bin/perl


##############################################################
## PNet.pl - a script to send formatted GoldMine Web Import
## data.
##
## Written by JCS
##
## Please make sure that you have set up Perl for use on your
## web machine before attempting to use this script.
##
## Disclaimer: Although we've tried to make this script as
## straightforward as possible, you will probably
## have to make changes to it to get it to work.
## FrontRange makes no claims as to the
## guarantees that this code will function.
##
##############################################################


print "Content-type: text/html\n\n";
$Body = "";
$XML = "";
$strDecodeTemp = "";
$smtp_server = "192.168.0.77";
$reply_from_name = "Web Import";
$sendto = "goldform\@catalyst-commercial.co.uk"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$versionnumber = "Version 1.0";

if($ENV{'REQUEST_METHOD'} eq "GET") {
&nopost;
}else{
&get_form_data;
&main;
}

sub HTMLEncode
{
$strDecodeTemp =~ s|\&|\&amp\;|g;
$strDecodeTemp =~ s|<|\&lt\;|g;
$strDecodeTemp =~ s|>|\&gt\;|g;
$strDecodeTemp =~ s|\"|\&quot\;|g;
return $strDecodeTemp;
}
sub get_form_data
{

read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
@pairs=split(/&/,$buffer);
foreach $pair (@pairs)
{
@a = split(/=/,$pair);
$name=$a[0];
$value=$a[1];
$name =~ s/\+/ /g;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$value =~ s/~!/ ~!/g;
$value =~ s/\+/ /g;
$value =~ s/(\r)+/\-\-/g;
$value =~ s/\n+//g;
$value =~ s/(\-\-)+/\n/g;
$value =~ s|\&|\&amp\;|g;
$value =~ s|<|\&lt\;|g;
$value =~ s|>|\&gt\;|g;
$value =~ s|\n|<br>\n|g;

push (@formdata,$name);
push (@formdata,$value);
push (@form,$nameform);
push (@form,$valueform);
push (@formname,$name);
push (@formvalue,$value);


}
%formname=@formname;
%formname;
%formvalue=@formvalue;
%formvalue;
%formdata=@formdata;
%formdata;


}

sub Decode
{
$intX = 0;
$intY = 0;
$intMod =0;
$intTemp = 0;
$intY = 0;
$strValueOut="";
$intL = length($strDecodeTemp);
for ($intX=1; $intX<=($intL/4); $intX++)
{
$Modulus = $intX % 2;
$strTemp="";
$strMod="";
if ($Modulus == 0)
{
$strMod = substr(substr($strDecodeTemp,$intY,4),0,2);
$strTemp = substr(substr($strDecodeTemp,$intY,4),length(substr($strDecodeTemp,$intY,4))-(2));
}
else
{

$strMod = substr(substr($strDecodeTemp,$intY,4),length(substr($strDecodeTemp,$intY,4))-(2));
$strTemp = substr(substr($strDecodeTemp,$intY,4),0,2);
}

$intMod=hex($strMod);
$intTemp=hex($strTemp);
$intTemp=$intTemp-$intMod;
$strValueOut=$strValueOut.chr($intTemp);
$intY= $intY + 4;
}
return $strValueOut;

}


sub main
{

$strDecodeTemp = $formdata{'SMTP'};
$smtp_server = &Decode;
$strDecodeTemp = $formdata{'SendToEmail'};
$sendto=&Decode;
$strDecodeTemp= $formdata{'OnNewSendGMEmail'};
$OnNewSendGMEmail =&Decode;

$strDecodeTemp= $formdata{'OnDUPSendGMEmail'};
$OnDUPSendGMEmail =&Decode;

$strDecodeTemp= $formdata{'OnNewAttachTrack'};
$OnNewAttachTrack =&Decode;

$strDecodeTemp= $formdata{'OnDupAttachTrack'};
$OnDupAttachTrack =&Decode;

$strDecodeTemp= $formdata{'Word'};
$Password =&Decode;

$strDecodeTemp= $formdata{'DupLogic'};
$DupLogic =&Decode;

$OutputAs = $formdata{'OutPutAs'};
$DuplicateCount=0;
$XML = "<gmdata>";
if ($formdata{'DuplicateCount'}ne '')
{
$DuplicateCount =$formdata{'DuplicateCount'};
}

if ($DuplicateCount >0 || $OnNewSendGMEmail ne '' || $OnDUPSendGMEmail ne '' ||
$OnNewAttachTrack ne '' || $OnDupAttachTrack ne '')
{
$Body = $Body."[Instructions]\n";
$XML = $XML."<Instructions>";
if ($DuplicateCount > 0)
{
$RealCount=0;
for ($indexval = 0; $indexval < @formvalue; $indexval++)
{
${'myname'} = $formname[$indexval];
$myname = $formname[$indexval];
${'myvalue'} = $formvalue[$indexval];

if(length($myname)> 17)
{
$name = substr($myname,0,17);
if ($name eq "DuplicateChecking")
{
$RealCount = $RealCount + 1;
$Body = $Body."DupCheck".$RealCount."=".$myvalue."\n";
$strDecodeTemp = $myvalue;
$myvalue = HTMLEncode;
if ($myvalue eq "EMAIL")
{
$XML = $XML."<DupCheck>EA1</DupCheck>";
}
elsif ($myvalue eq "WEBSITE")
{
$XML = $XML."<DupCheck>WS1</DupCheck>";
}
else
{
$XML = $XML."<DupCheck>".$myvalue."</DupCheck>";
}
}
}
}
if($DupLogic ne '')
{
$Body = $Body."DupLogic=OR\n";
}

}

if ($OnNewSendGMEmail ne '')
{
$Body = $Body."OnNewSendGMEmail=".$OnNewSendGMEmail."\n";
$strDecodeTemp = $OnNewSendGMEmail;
$OnNewSendGMEmail = HTMLEncode;
$XML = $XML."<OnNewSendGMEmail>".$OnNewSendGMEmail."</OnNewSendGMEmail>";

}
if ($OnDUPSendGMEmail ne '')
{
$Body = $Body."OnDUPSendGMEmail=".$OnDUPSendGMEmail."\n";
$strDecodeTemp = $OnDUPSendGMEmail;
$OnDUPSendGMEmail = HTMLEncode;
$XML = $XML."<OnDupSendGMEmail>".$OnDUPSendGMEmail."</OnDupSendGMEmail>";

}
if ($OnNewAttachTrack ne '')
{
$comma =index($OnNewAttachTrack, ",",0);
$Body = $Body."OnNewAttachTrack=".$OnNewAttachTrack."\n";
if ($comma eq -1)
{
$strDecodeTemp = $OnNewAttachTrack;
$OnNewAttachTrack = HTMLEncode;
$XML = $XML."<OnNewAttachTrack>".$OnNewAttachTrack."</OnNewAttachTrack>";
}
else
{
($track, $user) = split(/,/, $OnNewAttachTrack);
$strDecodeTemp = $track;
$track = HTMLEncode;
$strDecodeTemp = $user;
$user = HTMLEncode;
$XML = $XML."<OnNewAttachTrack User=".chr(34).$user.chr(34).">".$track."</OnNewAttachTrack>";
}
}
if ($OnDupAttachTrack ne '')
{
$comma =index($OnDupAttachTrack, ",", 0);
$Body = $Body."OnDupAttachTrack=".$OnDupAttachTrack."\n";
if ($comma eq -1)
{
$strDecodeTemp = $OnDupAttachTrack;
$OnDupAttachTrack = HTMLEncode;
$XML = $XML."<OnDupAttachTrack>".$OnDupAttachTrack."</OnDupAttachTrack>";
}
else
{
($track, $user) = split(/,/, $OnDupAttachTrack);
$strDecodeTemp = $track;
$track = HTMLEncode;
$strDecodeTemp = $user;
$user = HTMLEncode;
$XML = $XML."<OnDupAttachTrack User=".chr(34).$user.chr(34).">".$track."</OnDupAttachTrack>";
}


}
if ($Password ne '')
{
$Body = $Body."Password=".$Password."\n";
$strDecodeTemp = $Password;
$Password = HTMLEncode;
$XML = $XML."<Password>".$Password."</Password>";

}

if($DupLogic ne '')
{
$XML = $XML."<DupLogic>OR</DupLogic>";
}
else
{
$XML = $XML."<DupLogic>AND</DupLogic>";
}



$XML = $XML."</Instructions>";
}
$Body = $Body."[Data]\n";
$XML = $XML."<accounts><account>";

$Phone = "";
$EA = "";
$WS = "";
$PR = "";




for ($indexval = 0; $indexval < @formvalue; $indexval++)
{
${'myname'} = $formname[$indexval];
$myname = $formname[$indexval];
${'myvalue'} = $formvalue[$indexval];


if ($myname ne "GMsubmit" && $myname ne "SMTP" && $myname ne "OnNewSendGMEmail" &&
$myname ne "OnDUPSendGMEmail" && $myname ne "OnNewAttachTrack" &&
$myname ne "OnDupAttachTrack" && $myname ne "SendToEmail" && $myname ne "DuplicateCount" && $myname ne "Word" &&
$myname ne "OutPutAs" && (substr($myname, 0, 17) ne "DuplicateChecking" && $myname ne "DupLogic" && substr($myname, 0, 7) ne "pretty_" ))
{

if($myvalue ne '')
{

$Body = $Body.$myname."=".$myvalue."\n";
$strDecodeTemp = $myvalue;
$myvalue = HTMLEncode;

if ((substr($myname,0,5) ne "PHONE") && ($myname ne "FAX") && ($myname ne "EMAIL") && ($myname ne "WEBSITE"))

{

$PR = $PR."<property name=".chr(34).$myname.chr(34)." db_name=".chr(34).$myname.chr(34).">";
$PR = $PR."<property_string>".$myvalue."</property_string>";
$PR = $PR."</property>";
}
else
{
if(substr($myname,0,5) eq "PHONE")
{
$Phone = $Phone."<phone international=".chr(34)."0".chr(34)." type=".chr(34).$myname.chr(34)." source_fld=".chr(34).$myname.chr(34).">";
$Phone = $Phone."<properties><property name=".chr(34)."phone_number".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$Phone = $Phone."</phone>";
}
elsif (substr($myname,0,3) eq "FAX")
{
$Phone = $Phone."<phone international=".chr(34)."0".chr(34)." type=".chr(34).$myname.chr(34)." source_fld=".chr(34).$myname.chr(34).">";
$Phone = $Phone."<properties><property name=".chr(34)."phone_number".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$Phone = $Phone."</phone>";
}
elsif (substr($myname,0,7) eq "WEBSITE")
{
$WS = $WS."<website primary=".chr(34)."1".chr(34)." id=".chr(34)."WS1".chr(34).">";
$WS = $WS."<properties><property name=".chr(34)."web_site".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$WS = $WS."</website>";
}
elsif (substr($myname,0,5) eq "EMAIL")
{
$EA = $EA."<email primary=".chr(34)."1".chr(34)." id=".chr(34)."EA1".chr(34).">";
$EA = $EA."<properties><property name=".chr(34)."email_address".chr(34)."><property_string>".$myvalue."</property_string></property></properties>";
$EA = $EA."</email>";
}
}
}
}
}

if ($PR ne '')
{
$XML = $XML."<properties>".$PR."</properties>";
}
if($Phone ne '')
{
$XML = $XML."<phone_numbers>".$Phone."</phone_numbers>";
}
if($EA ne '')
{
$XML = $XML."<emails>".$EA."</emails>";
}
if($WS ne '')
{
$XML = $XML."<websites>".$WS."</websites>";
}
$XML = $XML."</account></accounts></gmdata>";

print("<!--\n\n".$XML."\n\n".$Body."\n\n-->");

$msgSubject = "Web Import";
$msgMessage = "";
if ($OutputAs eq "INI")
{
$msgMessage = $Body;
}
else
{
$msgMessage = $XML;
}

eval { require(Net::SMTP)};
if ($@)
{
print "Net::SMTP Failed to load. Please make sure that you have the NET:SMTP module from <a href=\" target=\"_new\">CPAN</a>.";
exit;
}

$smtp = Net::SMTP->new($smtp_server);
$smtp->mail("no-reply@frontrange.com");
$smtp->to ($sendto);
$smtp->data();
$smtp->datasend("To: ".$sendto."\n");
$smtp->datasend("From: GoldMine WebImport<no-reply\@frontrange.com>\n");
$smtp->datasend("Subject: $msgSubject\n");
$smtp->datasend("Content-Type: text/x-gm-impdata");
$smtp->datasend("\n\n");
$smtp->datasend($msgMessage."\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->datasend("\n");
$smtp->dataend(); # Finish sending the mail #
$smtp->quit; # Close the SMTP connection #

&success;


}


sub nopost
{


print <<"MYMAINtext";

<html>

<head>
<title>D'oh!</title>
</head><body bgcolor="#cfcfcf">
<center>


<table width=500 border=1><tr><td bgcolor="#000080">
<br><br>
<font face="Arial" color="#ffffff">
<center>Error occured. Must be POST instead of GET.
</center></font>
<br><br>
</td></tr></table>
</center>

</body></html>

MYMAINtext

exit;

}

sub success
{



print <<"Myformatsuccess";

<html>
<head>
<title>Thank You.</title>
</head>
<body>
<BR><BR><CENTER>
<h2>Your form has been submitted successfully!</h2>


</CENTER>



</body>
</html>

Myformatsuccess


exit;

}

This is the HTML code:

<html><head><title>GoldMine Import Generated Page</title></head><body><form action=" name="frmGMGenerated" id="frmGMGenerated" method="POST" target="_self"><p>Address1: <input type="text" id="ADDRESS1" name="ADDRESS1" maxlength="40" size="30"/></p><p>County: <input type="text" id="STATE" name="STATE" maxlength="20" size="30"/></p><p>Full Name: <input type="text" id="CONTACT" name="CONTACT" maxlength="40" size="30"/></p><p>E-mail: <input type="text" id="EMAIL" name="EMAIL" maxlength="35" size="30"/></p><p>Source Code: <input type="text" id="SOURCE" name="SOURCE" maxlength="20" size="30"/></p><p>City: <input type="text" id="CITY" name="CITY" maxlength="30" size="30"/></p><p>Address2: <input type="text" id="ADDRESS2" name="ADDRESS2" maxlength="40" size="30"/></p><p>Partner Code: <input type="text" id="KEY3" name="KEY3" maxlength="20" size="30"/></p><p>Country: <input type="text" id="COUNTRY" name="COUNTRY" maxlength="20" size="30"/></p><p>Post Code: <input type="text" id="ZIP" name="ZIP" maxlength="10" size="30"/></p><p>Phone Number: <input type="text" id="PHONE1" name="PHONE1" maxlength="25" size="30"/></p><input type="hidden" id="OnNewSendGMEmail" name="OnNewSendGMEmail" value="7C3901498B39115A7421"/><input type="hidden" id="OnDUPSendGMEmail" name="OnDUPSendGMEmail" value="722F0E569240145D923F"/><input type="hidden" id="OutPutAs" name="OutPutAs" value="XML"/><input type="hidden" id="OnNewAttachTrack" name="OnNewAttachTrack" value="7936198E9C29198DAF401C898C2706785434015895300B778C29107FA83B0469"/><input type="hidden" id="SMTP" name="SMTP" value="623109425D2B1A486736093F622A1E4C5A2A0E3C6A330C43"/><input type="hidden" id="SendToEmail" name="SendToEmail" value="A63F0574912504688D271685AC3A1E8B7131197C9A390276862506729A211184AE3A15428F2C01708F220F7CA54003758F2C0972A03F07736537177A97280D3BAA350671"/><p><input type="Reset" id="Reset" name="Reset" value="Reset"/><input type="submit" id="GMsubmit" name="GMsubmit" value="Submit"/></p></form></body></html>
<script language="JavaScript" type="text/JavaScript">function MM_findObj(n, d) {var p,i,x;if(!d) d=document;if((p=n.indexOf("?"))>0&&parent.frames.length) {d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}if(!(x=d[n])&&d.all) x=d.all[n];for (i=0;!x&&i<d.forms.length;i++) x=d.forms[n];for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers.document);if(!x && d.getElementById) x=d.getElementById(n); return x;}
function MM_validateForm() {var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args);if (val) { nm=val.name; if ((val=val.value)!="") {if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';} else if (test!='R') { num = parseFloat(val);if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';if (test.indexOf('inRange') != -1) { p=test.indexOf(':');min=test.substring(8,p); max=test.substring(p+1);if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }} if (errors) alert('The following error(s) occurred:\n'+errors);document.MM_returnValue = (errors == '');}</script>
 
Hi Paul

I ran my hosts syntax checker and it returned the following errors:

Possible unintended interpolation of @frontrange in string at public_html/cheese/pnet.pl line 391.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 23.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 24.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 25.
Global symbol "$smtp_server" requires explicit package name at public_html/cheese/pnet.pl line 26.
Global symbol "$reply_from_name" requires explicit package name at public_html/cheese/pnet.pl line 27.
Global symbol "$sendto" requires explicit package name at public_html/cheese/pnet.pl line 28.
Global symbol "$versionnumber" requires explicit package name at public_html/cheese/pnet.pl line 29.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 40.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 41.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 42.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 43.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 44.
Global symbol "$buffer" requires explicit package name at public_html/cheese/pnet.pl line 49.
Global symbol "@pairs" requires explicit package name at public_html/cheese/pnet.pl line 50.
Global symbol "$buffer" requires explicit package name at public_html/cheese/pnet.pl line 50.
Global symbol "$pair" requires explicit package name at public_html/cheese/pnet.pl line 51.
Global symbol "@pairs" requires explicit package name at public_html/cheese/pnet.pl line 51.
Global symbol "@a" requires explicit package name at public_html/cheese/pnet.pl line 53.
Global symbol "$pair" requires explicit package name at public_html/cheese/pnet.pl line 53.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 54.
Global symbol "@a" requires explicit package name at public_html/cheese/pnet.pl line 54.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 55.
Global symbol "@a" requires explicit package name at public_html/cheese/pnet.pl line 55.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 56.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 57.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 58.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 59.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 60.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 61.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 62.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 63.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 64.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 65.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 66.
Global symbol "@formdata" requires explicit package name at public_html/cheese/pnet.pl line 68.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 68.
Global symbol "@formdata" requires explicit package name at public_html/cheese/pnet.pl line 69.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 69.
Global symbol "@form" requires explicit package name at public_html/cheese/pnet.pl line 70.
Global symbol "$nameform" requires explicit package name at public_html/cheese/pnet.pl line 70.
Global symbol "@form" requires explicit package name at public_html/cheese/pnet.pl line 71.
Global symbol "$valueform" requires explicit package name at public_html/cheese/pnet.pl line 71.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 72.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 72.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 73.
Global symbol "$value" requires explicit package name at public_html/cheese/pnet.pl line 73.
Global symbol "%formname" requires explicit package name at public_html/cheese/pnet.pl line 77.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 77.
Global symbol "%formname" requires explicit package name at public_html/cheese/pnet.pl line 78.
Global symbol "%formvalue" requires explicit package name at public_html/cheese/pnet.pl line 79.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 79.
Global symbol "%formvalue" requires explicit package name at public_html/cheese/pnet.pl line 80.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 81.
Global symbol "@formdata" requires explicit package name at public_html/cheese/pnet.pl line 81.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 82.
Global symbol "$intX" requires explicit package name at public_html/cheese/pnet.pl line 89.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 90.
Global symbol "$intMod" requires explicit package name at public_html/cheese/pnet.pl line 91.
Global symbol "$intTemp" requires explicit package name at public_html/cheese/pnet.pl line 92.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 93.
Global symbol "$strValueOut" requires explicit package name at public_html/cheese/pnet.pl line 94.
Global symbol "$intL" requires explicit package name at public_html/cheese/pnet.pl line 95.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 95.
Global symbol "$intX" requires explicit package name at public_html/cheese/pnet.pl line 96.
Global symbol "$intX" requires explicit package name at public_html/cheese/pnet.pl line 96.
Global symbol "$intL" requires explicit package name at public_html/cheese/pnet.pl line 96.
Global symbol "$intX" requires explicit package name at public_html/cheese/pnet.pl line 96.
Global symbol "$Modulus" requires explicit package name at public_html/cheese/pnet.pl line 98.
Global symbol "$intX" requires explicit package name at public_html/cheese/pnet.pl line 98.
Global symbol "$strTemp" requires explicit package name at public_html/cheese/pnet.pl line 99.
Global symbol "$strMod" requires explicit package name at public_html/cheese/pnet.pl line 100.
Global symbol "$Modulus" requires explicit package name at public_html/cheese/pnet.pl line 101.
Global symbol "$strMod" requires explicit package name at public_html/cheese/pnet.pl line 103.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 103.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 103.
Global symbol "$strTemp" requires explicit package name at public_html/cheese/pnet.pl line 104.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 104.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 104.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 104.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 104.
Global symbol "$strMod" requires explicit package name at public_html/cheese/pnet.pl line 109.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 109.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 109.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 109.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 109.
Global symbol "$strTemp" requires explicit package name at public_html/cheese/pnet.pl line 110.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 110.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 110.
Global symbol "$intMod" requires explicit package name at public_html/cheese/pnet.pl line 113.
Global symbol "$strMod" requires explicit package name at public_html/cheese/pnet.pl line 113.
Global symbol "$intTemp" requires explicit package name at public_html/cheese/pnet.pl line 114.
Global symbol "$strTemp" requires explicit package name at public_html/cheese/pnet.pl line 114.
Global symbol "$intTemp" requires explicit package name at public_html/cheese/pnet.pl line 115.
Global symbol "$intTemp" requires explicit package name at public_html/cheese/pnet.pl line 115.
Global symbol "$intMod" requires explicit package name at public_html/cheese/pnet.pl line 115.
Global symbol "$strValueOut" requires explicit package name at public_html/cheese/pnet.pl line 116.
Global symbol "$strValueOut" requires explicit package name at public_html/cheese/pnet.pl line 116.
Global symbol "$intTemp" requires explicit package name at public_html/cheese/pnet.pl line 116.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 117.
Global symbol "$intY" requires explicit package name at public_html/cheese/pnet.pl line 117.
Global symbol "$strValueOut" requires explicit package name at public_html/cheese/pnet.pl line 119.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 127.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 127.
Global symbol "$smtp_server" requires explicit package name at public_html/cheese/pnet.pl line 128.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 129.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 129.
Global symbol "$sendto" requires explicit package name at public_html/cheese/pnet.pl line 130.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 131.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 131.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 132.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 134.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 134.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 135.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 137.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 137.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 138.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 140.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 140.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 141.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 143.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 143.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 144.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 146.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 146.
Global symbol "$DupLogic" requires explicit package name at public_html/cheese/pnet.pl line 147.
Global symbol "$OutputAs" requires explicit package name at public_html/cheese/pnet.pl line 149.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 149.
Global symbol "$DuplicateCount" requires explicit package name at public_html/cheese/pnet.pl line 150.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 151.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 152.
Global symbol "$DuplicateCount" requires explicit package name at public_html/cheese/pnet.pl line 154.
Global symbol "%formdata" requires explicit package name at public_html/cheese/pnet.pl line 154.
Global symbol "$DuplicateCount" requires explicit package name at public_html/cheese/pnet.pl line 157.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 157.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 157.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 158.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 158.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 160.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 160.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 161.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 161.
Global symbol "$DuplicateCount" requires explicit package name at public_html/cheese/pnet.pl line 162.
Global symbol "$RealCount" requires explicit package name at public_html/cheese/pnet.pl line 164.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 165.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 165.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 165.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 165.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 167.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 167.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 168.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 168.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 168.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 169.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 169.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 171.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 173.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 173.
Global symbol "$name" requires explicit package name at public_html/cheese/pnet.pl line 174.
Global symbol "$RealCount" requires explicit package name at public_html/cheese/pnet.pl line 176.
Global symbol "$RealCount" requires explicit package name at public_html/cheese/pnet.pl line 176.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 177.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 177.
Global symbol "$RealCount" requires explicit package name at public_html/cheese/pnet.pl line 177.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 177.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 178.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 178.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 179.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 180.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 182.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 182.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 184.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 186.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 186.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 190.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 190.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 190.
Global symbol "$DupLogic" requires explicit package name at public_html/cheese/pnet.pl line 195.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 197.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 197.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 202.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 204.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 204.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 204.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 205.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 205.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 206.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 207.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 207.
Global symbol "$OnNewSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 207.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 210.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 212.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 212.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 212.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 213.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 213.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 214.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 215.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 215.
Global symbol "$OnDUPSendGMEmail" requires explicit package name at public_html/cheese/pnet.pl line 215.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 218.
Global symbol "$comma" requires explicit package name at public_html/cheese/pnet.pl line 220.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 220.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 221.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 221.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 221.
Global symbol "$comma" requires explicit package name at public_html/cheese/pnet.pl line 222.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 224.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 224.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 225.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 226.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 226.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 226.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 230.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 230.
Global symbol "$OnNewAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 230.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 231.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 231.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 232.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 233.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 233.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 234.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 235.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 235.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 235.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 235.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 238.
Global symbol "$comma" requires explicit package name at public_html/cheese/pnet.pl line 240.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 240.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 241.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 241.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 241.
Global symbol "$comma" requires explicit package name at public_html/cheese/pnet.pl line 242.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 244.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 244.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 245.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 246.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 246.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 246.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 250.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 250.
Global symbol "$OnDupAttachTrack" requires explicit package name at public_html/cheese/pnet.pl line 250.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 251.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 251.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 252.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 253.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 253.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 254.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 255.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 255.
Global symbol "$user" requires explicit package name at public_html/cheese/pnet.pl line 255.
Global symbol "$track" requires explicit package name at public_html/cheese/pnet.pl line 255.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 260.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 262.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 262.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 262.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 263.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 263.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 264.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 265.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 265.
Global symbol "$Password" requires explicit package name at public_html/cheese/pnet.pl line 265.
Global symbol "$DupLogic" requires explicit package name at public_html/cheese/pnet.pl line 269.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 271.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 271.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 275.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 275.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 280.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 280.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 282.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 282.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 283.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 283.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 285.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 286.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 287.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 288.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 293.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 293.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 293.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 293.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 295.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 295.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 296.
Global symbol "@formname" requires explicit package name at public_html/cheese/pnet.pl line 296.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 296.
Global symbol "@formvalue" requires explicit package name at public_html/cheese/pnet.pl line 297.
Global symbol "$indexval" requires explicit package name at public_html/cheese/pnet.pl line 297.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 300.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 300.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 300.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 301.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 301.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 302.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 302.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 302.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 302.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 303.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 303.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 303.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 303.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 306.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 309.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 309.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 309.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 309.
Global symbol "$strDecodeTemp" requires explicit package name at public_html/cheese/pnet.pl line 310.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 310.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 311.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 313.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 313.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 313.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 313.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 317.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 317.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 317.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 317.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 318.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 318.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 318.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 319.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 319.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 323.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 325.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 325.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 325.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 325.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 326.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 326.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 326.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 327.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 327.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 329.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 331.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 331.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 331.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 331.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 332.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 332.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 332.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 333.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 333.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 335.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 337.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 337.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 338.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 338.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 338.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 339.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 339.
Global symbol "$myname" requires explicit package name at public_html/cheese/pnet.pl line 341.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 343.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 343.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 344.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 344.
Global symbol "$myvalue" requires explicit package name at public_html/cheese/pnet.pl line 344.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 345.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 345.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 352.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 354.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 354.
Global symbol "$PR" requires explicit package name at public_html/cheese/pnet.pl line 354.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 356.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 358.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 358.
Global symbol "$Phone" requires explicit package name at public_html/cheese/pnet.pl line 358.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 360.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 362.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 362.
Global symbol "$EA" requires explicit package name at public_html/cheese/pnet.pl line 362.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 364.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 366.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 366.
Global symbol "$WS" requires explicit package name at public_html/cheese/pnet.pl line 366.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 368.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 368.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 370.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 370.
Global symbol "$msgSubject" requires explicit package name at public_html/cheese/pnet.pl line 372.
Global symbol "$msgMessage" requires explicit package name at public_html/cheese/pnet.pl line 373.
Global symbol "$OutputAs" requires explicit package name at public_html/cheese/pnet.pl line 374.
Global symbol "$msgMessage" requires explicit package name at public_html/cheese/pnet.pl line 376.
Global symbol "$Body" requires explicit package name at public_html/cheese/pnet.pl line 376.
Global symbol "$msgMessage" requires explicit package name at public_html/cheese/pnet.pl line 380.
Global symbol "$XML" requires explicit package name at public_html/cheese/pnet.pl line 380.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 390.
Global symbol "$smtp_server" requires explicit package name at public_html/cheese/pnet.pl line 390.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 391.
Global symbol "@frontrange" requires explicit package name at public_html/cheese/pnet.pl line 391.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 392.
Global symbol "$sendto" requires explicit package name at public_html/cheese/pnet.pl line 392.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 393.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 394.
Global symbol "$sendto" requires explicit package name at public_html/cheese/pnet.pl line 394.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 395.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 396.
Global symbol "$msgSubject" requires explicit package name at public_html/cheese/pnet.pl line 396.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 397.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 398.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 399.
Global symbol "$msgMessage" requires explicit package name at public_html/cheese/pnet.pl line 399.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 400.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 401.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 402.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 403.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 404.
Global symbol "$smtp" requires explicit package name at public_html/cheese/pnet.pl line 405.
public_html/cheese/pnet.pl had compilation errors.
Can't call method "name" on an undefined value at /usr/lib/perl5/5.6.1/i386-linux/B/Lint.pm line 186.
CHECK failed--call queue aborted at public_html/cheese/pnet.pl line 472.
Failed check
0

 
Hi,

Most of that is what you get when you check the script with use strict; and use warnings;

You can quieten down the syntax check first of all by putting those two lines at the top of your script (use strict; and use warnings;)and then declaring each of those variables like this at the top of the script.

my $smtp;

Get that done first and then have a look at the "can't call method name" thing.

You can check the syntax of your script locally like this at the command line:

perl -c script_name.pl

Mike

I am not inscrutable. [orientalbow]

Want great answers to your Tek-Tips questions? Have a look at faq219-2884

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top