在表中插入电子邮件地址时出错
**[perl] my $username=$CGI->{salesrep}; return $username;[/perl]@gmail.com**
我想在表中插入这个值。
但它在执行时为null。
[query type=list sql="INSERT tech4less.outofstock_sku SET name='[value name]',customer_email='[value email]', phone='[value phone]', state='[value b_state]', postalcode='[value zip]', country='[value country]', **salesperson='[perl]$username[/perl]@gmail.com**', product='[value wish_product]', item_description='[value wish_descrip]', manufacturer='[value wish_man]', category = '[value wish_cat]', business_yn='[value option]', date = now()"]
[/query]
如果$CGI是CGI对象,则通过以下方式访问参数:
my $username=$CGI->param('salesrep');
阅读以下内容:http://perldoc.perl.org/CGI.html#FETCHING-单参数的值或值:
问候