RE: [PHP] 2values on form, help in catching as one.

2003-07-02 Thread Miranda, Joel Louie M
"two"; break; } -- -- As simple as that. :) Im learning! -- Thank you, Louie -Original Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 10:41 PM To: Miranda, Joel Louie M; '[EMAIL PROTECTED]' Subject: Re: [PHP] 2values on form, help

Re: [PHP] 2values on form, help in catching as one.

2003-07-02 Thread Mark
It's not clear what you're trying to do. If the values are for a radio button or checkbox, use the same name for both buttons. The values have to be mutually exclusive for what you;re trying to do to work. You could do something like this: if (isset($_REQUEST['TemplateOne']) { $test=$_REQUEST

Re: [PHP] 2values on form, help in catching as one.

2003-07-01 Thread Jason Sheets
You could do it a couple different ways, if you just want to combine the values the easiest way is: $v_template = $_REQUEST['TemplateOne'] . $_REQUEST['TemplateTwo']; If you want a space between the two values expand on this idea using: $v_template = $_REQUEST['TemplateOne'] . ' ' . $_REQUEST['