RE: [PHP] display a hiddenfield

2004-02-20 Thread Michael Egan
No value has been given to the hidden field. e.g. print (input type=\hidden\ name=\hiddenField\ value=\yourvalue\); HTH. Cheers, Michael Egan -Original Message- From: Dominique ANOKRE [mailto:[EMAIL PROTECTED] Sent: 20 February 2004 11:17 To: Php List Subject: [PHP] display a

Re: [PHP] display a hiddenfield

2004-02-20 Thread Dominique ANOKRE
20, 2004 11:22 AM Subject: RE: [PHP] display a hiddenfield No value has been given to the hidden field. e.g. print (input type=\hidden\ name=\hiddenField\ value=\yourvalue\); HTH. Cheers, Michael Egan -Original Message- From: Dominique ANOKRE [mailto:[EMAIL PROTECTED] Sent: 20

Re: [PHP] display a hiddenfield

2004-02-20 Thread Marek Kilimajer
Dominique ANOKRE wrote: I use a simple form like this : print(form method=\post\ action=\image.php\\n); print(input type=\hidden\ name=\hiddenField\\n); This will result in input type=hidden name=hiddenField That is a hidden field without a value. This will get to the browser.