0
ウェブサイトでの検索結果を表示する必要があります。私は、HTMLフォームから検索パラメータを受け取ります。私はこれをしようとすると:File :: Findの結果をhtml perlスクリプトで出力するにはどうしたらいいですか?
#!/usr/bin/perl
use CGI qw(:standard);
use File::Find;
my $search = param('value');
my $result = `print find(sub {print $File::Find::name if ($_ eq $search);
}, '/home');`
print "Content-type:text/html\n\n";
print "<html>";
print "<head></head>";
print "<body";
print "$result";
print "</body>";
print "</html>";
私は次のエラーを取得:
syntax error at ./search.pl line 8, near "print"
Execution of ./search.pl aborted due to complication errors.
私はそれはそれはエラーを促すだ見つけるの割り当てだと思うが。しかし、私は役に立たない他の方法を試みました。