[PHP] Variable from hidden fields shortens.

2003-06-22 Thread Denis L. Menezes
I have a form called feedback which has a hidden field as follows : ?php Printinput type=\text\ name=\SubCategoryName\ value=\$SubCategoryName\; ? I send this hidden field as a variable in form2 which sends an email with the following code : ?php // Build up email header fields $mailFrom

Re: [PHP] Variable from hidden fields shortens.

2003-06-22 Thread Philip Olson
For example: $a = 'a b c'; print $a;// a b c print urlencode($a); // a+b+c So, you want to urlencode your url (the query string). Regards, Philip On Sun, 22 Jun 2003, Denis L. Menezes wrote: I have a form called feedback which has a hidden field as follows : ?php Printinput