What I need to do is on submit it does:
if($_POST['looksub']){
//Looksub is the ID of the Submit button
mysql_connect($host, $user, $pass) or die("Cannot connect: ".mysql_error());
if ( isset($_POST["look1"]) )
{
//some stuff
}elsif ( isset($_POST["look2"]) )
{
//some other stuff
}
look1 and look2 are radio boxes.
This should mean that on Submit it checks to see if the radio box look1 is selected and if it is then it should do what's in that bit but it doesn't work. I feel that the problem is the isset.