for exemple; if I send a param like /.../exemple.cgi?offer=36
in the sub, I want to check if 36 is in a @table,...
like
@table = (`value1`,`value2`,...,`valueN`)
#I want know if $param = anyone of the @table value
if $param != @table {
#then add it to the table (for exemple)
}
I want also know how to add an item to a @table,
like @table = @table + $NewValue
Thanks, the help I received thru this forum was very helpful
in the sub, I want to check if 36 is in a @table,...
like
@table = (`value1`,`value2`,...,`valueN`)
#I want know if $param = anyone of the @table value
if $param != @table {
#then add it to the table (for exemple)
}
I want also know how to add an item to a @table,
like @table = @table + $NewValue
Thanks, the help I received thru this forum was very helpful