> www.mysite.com/index.cgi?id=$var&name=$var2
>
> But How can I send a varibles to another page ?
> I need to send this Two variables to index.cgi , but
> When I try it ,none
> of Them seems to be reiceived .

use CGI;
use strict;

$q=new CGI();
$id=$q->param('id');
$name=$q->param('name');

Then do proper taint checking and continue on with whatever it is you need
with those values :)

Dennis


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to