html から perl スクリプトを実行しようとしていますが、実行中にエラーが発生します。これが私のhtmlと2行のperlコードです。エラーコードは、「Internal Server Error」やその他の行が表示されているだけで、あまり説明的ではありません。また、perlスクリプトで受信ユーザー名を表示する方法も知りたいです。
pwd
/var/www/cgi-bin
ls -l
total 4
-rwxr-xr-x 1 root root 49 Aug 26 16:49 username.pl
HTML コード:
<html>
<head>
</head>
<body>
<h1> Hello </h1>
<form action="/cgi-bin/username.pl" method="POST">
<input type="text" name="username">
<input type="submit">
</form>
</body>
</html>
パールコード:
#!/usr/bin/perl
print "Received user name is\n";