in reply to CGI : How to put an "&" into a GET-parameter

To add to the examples:

use CGI::Enurl; $href = 'script.pl?' . enurl({ company => 'Smith & Jones', place => 'Brussels' }); If you happen to have Interpolation.pm (0.68) you may do this:<code> use CGI::Enurl; use Interpolation '?:@->$' => sub { '?'.enurl({@_})}; print qq{<a href="script.pl$?{company => 'Smith & Jones', place => 'Br +ussels'}">click here</a>\n};
Jenda