在 PHP 中,重定向到一个新的 URL 并传递诸如“用户名”之类的信息是很常见的。
<?php
header( 'Location: http://www.yoursite.com/new_page.php?user_name=$username' ) ;
?>
然后我可以访问“new_page.php”中“user_name”的值。
我不知道如何使用 perl 来做到这一点。
print $cgi->redirect(-uri=>http://www.yoursite.com/new_page.pl?user_name=$username, -status=>303 , -cookie => $c );
我试过用我的$username = $cgi->param('user_name')
,但它没有打印任何东西。
谢谢。