heatmapShow.cgi获取post表单值

#!/usr/bin/perl
use strict;
use warnings;
use CGI;

# 创建新的CGI对象
my $cgi = new CGI;

# 获取hidden字段的值
my $project_id = $cgi->param('projectid');
my $rna_type = $cgi->param('RNAtype');
my $description = $cgi->param('description');
my $experiment = $cgi->param('Experiment');

# 现在您可以在脚本中使用这些值
print $cgi->header();
print $cgi->start_html('Results');
print "<h2>Hidden Values Received:</h2>";
print "<p>Project ID: $project_id</p>";
print "<p>RNA Type: $rna_type</p>";
print "<p>Description: $description</p>";
print "<p>Experiment: $experiment</p>";
print $cgi->end_html();