I think you have the idea. The &'s are used to seperate the various
variables. If you want to set $p to something like 'Tom & Jerry' then
personally I'd do something like:

<?php 

$p = "Tom & Jerry";
$s = "Cat & Mouse";
printf("<a href='{$_SERVER['PHP_SELF']}?p=%s&s=%s", urlencode($p),
urlencode($s));

?>

On 6/4/05, Jack Jackson <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> If I want to make a link to a URL which includes some GETs can I just do:
> 
> <a href='{$_SERVER['PHP_SELF']}?p={$p}&c={$s}' ... etc etc
> 
> or must I escape the ampersand somehow?
> 
> TIA,
> --Jack
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to