setAttribute("name","name");
$clsHtmlText->setAttribute("value",$item->getValue("name"));
$clsHtmlText->addRequiredFieldValidator("text",
"",
"Name");
echo $clsHtmlText->toHtml();
?>
Name
setAttribute("name","email");
$clsHtmlText->setAttribute("value",$item->getValue("email"));
$clsHtmlText->addRequiredFieldValidator("email",
"",
"E-mail");
echo $clsHtmlText->toHtml();
?>
Email
setAttribute("name","contact_me");
$clsHtmlRadio->setAttribute("value","E-mail");
if ($item->getValue("contact_me") == "E-mail")
{
$clsHtmlRadio->setAttribute("checked", "checked");
}
echo $clsHtmlRadio->toHtml();
?>
Contact me
setAttribute("name","phone");
$clsHtmlText->setAttribute("value",$item->getValue("phone"));
$clsHtmlText->addRequiredFieldValidator("text",
"",
"Phone");
echo $clsHtmlText->toHtml();
?>
Phone
setAttribute("name","contact_me");
$clsHtmlRadio->setAttribute("value","Phone");
if ($item->getValue("contact_me") == "Phone")
{
$clsHtmlRadio->setAttribute("checked", "checked");
}
echo $clsHtmlRadio->toHtml();
?>
Contact me
setAttribute("name","doctor");
$clsHtmlCheckBox->setAttribute("value","Yes");
if ($item->getValue("doctor") == "Yes")
{
$clsHtmlCheckBox->setAttribute("checked", "checked");
}
echo $clsHtmlCheckBox->toHtml();
?>
Doctor
setAttribute("name","practice_staff");
$clsHtmlCheckBox->setAttribute("value","Yes");
if ($item->getValue("practice_staff") == "Yes")
{
$clsHtmlCheckBox->setAttribute("checked", "checked");
}
echo $clsHtmlCheckBox->toHtml();
?>
Practice Staff
setAttribute("name","button_go_back");
$clsHtmlButton->setAttribute("value","<< GO BACK");
$clsHtmlButton->setAttribute("onclick","return Client_GoToPreviousPage('" . $clsHtmlForm->getAttribute("name") . "');");
// echo $clsHtmlButton->toHtml();
?>
setAttribute("name","button_continue");
$clsHtmlButton->setAttribute("value","CONTINUE >>");
$clsHtmlButton->setAttribute("onclick","return Client_GoToNextPage('" . $clsHtmlForm->getAttribute("name") . "');");
echo $clsHtmlButton->toHtml();
?>
Log in to receive contact instructions
for your submitted materials.