RE: [PHP] how to keep spaces in parameters in URL?

2006-04-24 Thread Chrome
http://php.net/manual/en/function.urlencode.php

Should get you what you need :)

Dan

-- 
http://chrome.me.uk
 
-Original Message-
From: Bing Du [mailto:[EMAIL PROTECTED] 
Sent: 24 April 2006 22:42
To: php-general@lists.php.net
Subject: [PHP] how to keep spaces in parameters in URL?

Hello,

==
?php
$name = 'foo bar';

echo a href=/index.php?name=. $name .Foo Bar/a;
?
==

Then the URL showed up at the bottom border of the browser has 'name=foo'.

What should I do to have 'name=foo bar' in the URL?  I tried
htmlspecialchars but did not see any difference.

I'd appreciate any help.

Bing

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


__ NOD32 1.1504 (20060424) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

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



RE: [PHP] how to keep spaces in parameters in URL?

2006-04-24 Thread Jeremy Schreckhise
 
Try
print(a href='/index.php?name=$name'Foo Bar/a);


Jeremy Schreckhise, M.B.A.


Hello,

==
?php
$name = 'foo bar';

echo a href=/index.php?name=. $name .Foo Bar/a; ? ==

Then the URL showed up at the bottom border of the browser has 'name=foo'.

What should I do to have 'name=foo bar' in the URL?  I tried
htmlspecialchars but did not see any difference.

I'd appreciate any help.

Bing

--
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