<?php
include_once("config.php");
//Haven't seen the form so display it!
if ($_POST[opp] != "register.php")
{
include_once("register_form.php");
}
//Have already seen the form
else
{
//Inlclude the form validator script
include ("FormValidator.class.inc");
$checkform = new...