<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl
use CGI;
use CGI qw(:standard Vars);

my $record = param('record');

$url = "http://www.bestbets.org/bets/bet.php?id=".$record;

my $q = CGI-&gt;new(); 
print $q-&gt;redirect( 
-location =&gt; $url, 
-status =&gt; 301, 
);






</pre></body></html>