$yname = $_POST['yname'];
$temail = $_POST['temail'];
echo $yname;
echo $temail;
if ($yname == "" Or $temail == "") {
echo "Error";
} else {
echo "Right";
}
This gives me "error" even though they echo values earlier, what's wrong with the if statement?