[PHP-DB] Re: [PHP-DB] Updating Forms Values

2002-04-04 Thread Bzdpltd
Hi there again. I have tried using the urlencode method but for some reason it is still doing the same thing and stripping the rest of the name. I will try to explain more how this works. I have a site where you login using a name and passord. These values are stored using cookies and we have th

Re: [PHP-DB] Updating Forms Values

2002-04-04 Thread Paul Burney
on 4/4/02 8:35 AM, [EMAIL PROTECTED] at [EMAIL PROTECTED] appended the following bits to my mbox: > home.php?name=Barry Zimmerman > > This once you have eddited a page becomes: > > home.php?name=Barry You'll need to url encode the variable: echo 'home.php?name=' , urlencode($username); HTH.