in reply to CGI script query
You must replace it with a simple printprint $query->('dssp file used is $dssp_file');
Note the use of double quotes here. With single quotes your variable will not be interpolated.print "dssp file used is $dssp_file";
print $query->h1("dssp file used is $dssp_file");
|
|---|