i know i have a book somewhere in my house with the answer to this but i don't know where it is:
i have 3 checkboxes on a page on my site, all of which need to be checked for the application to be succesfull, i know this can be done with javascript but i wold rather do it in PHP as i find it easier to follow.
so bassicaly i need it to do the following:
IF($fsx AND $netemail AND $randr == Yes)
{
Send Accepting E-Mail
}
else
{
Send Rejection E-Mail
}
i know AND isnt the correct syntax to use what is?