in reply to $variables when retrieving cgi params
$get = $cgi->param($item); [download]
notice no single quotes. The single quotes prevent variable interpolation and hence you were trying to retrieve a param actually named $item.
-derby