[Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Premature end of script headers: job_post_test.pl, referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Bareword found where operator expected at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 38, near "my$sth =$dbh->prepare("INSERT", referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] (Might be a runaway multi-line "" string starting on line 37), referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Semicolon seems to be missing at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 38., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Use of ?PATTERN? without explicit operator is deprecated at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] syntax error at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 38, near "my$sth =$dbh->prepare("INSERT INTO ", referer: http://diversitylink.com/ [Mon Jun 10 12:18:31 2024] [error] [client 73.21.226.229] Search pattern not terminated or ternary operator parsed as search pattern at E:\\Pinnacle\\DiversityLink\\cgi-bin\\job_post_test.pl line 39., referer: http://diversitylink.com/ #### #!C:/Perl/bin/perl -w ##post_jobs.pl use CGI qw(:standard); use DBI; print "Content-type: text/html\n\n"; ###use POSIX qw(strftime); ####$shortdate = strftime "%B %d, %Y", localtime; $JobID=param('JobID'); $EmployerID=param('EmployerID'); $EmployerName=param('EmployerName'); $Title=param('Title'); $Logo=param('Logo'); $City=param('City'); $StateProvince=param('StateProvince'); $Description=param('Description'); $Function=param('Function'); $Sector=param('Sector'); $Country=param('Country'); $Posted=param('Posted'); if ($JobID eq ""||$EmployerID eq ""||$EmployerName eq ""||$Title eq ""||$Logo eq ""||$City eq ""||$StateProvince eq ""||$Description eq ""|| $Function eq ""||$Sector eq ""||$Country eq ""||$Posted eq ""||$Logo eq "") { print "The FORM is INCOMPLETE"; } else { my$dbh = DBI->connect('dbi:mysql:jobs_db', "Poster','Poster Password'); my$sth =$dbh->prepare("INSERT INTO jobs (JobID,EmployerID,EmployerName,Title,City,StateProvince,Description,Function,Sector,Country,Posted) Values(?,?,?,?,?,?,?,?,?,?,?)"); $sth ->execute($JobID,$EmployerID,$EmployerName,$Title,$City,$StateProvince,$Description,$Function,$Sector,$Country,$Posted); $sth ->finish(); $dbh->disconnect (); } #!/usr/local/bin/perl print "Your Ad Was Posted.\n"; exit;