Quote:
Originally Posted by AN-net
well if its just a simple radio button choice there is no reason for ajax, just use dynamic html saying if a user chooses this add these fields. also if your just going to have them load another page upon selection then no need for any javascript just PHP 
|
I could add php like this for those radio buttons?
if ($_REQUEST['do'] == 'option1')
{
DISPLAY THIS
}
if ($_REQUEST['do'] == 'option2')
{
DISPLAY THAT
}
Or would I want to use conditionals?