>       How come I get this it does not make since

Makes perfect sense:

<a href="whatever.php?name=what+ever">test</a>

Web browsers url encode form elements. If you use a href link like this,
you need to do the URL encoding yourself. A + happens to be a space, in
URL encoding.

So, PHP receives "name=what+ever" and sets $name = "what ever".

Jason

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to