Re: ampersands in href's

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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 <jackson.linux@xxxxxxxxx> 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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux