I have this section of code that gets ignored for some reason. If I make the variables not equal it does the else correctly. Basicly its just this red section that is doing absolutly nothing. I have been trying to get this to work for a while but I just can't figure out what could be wrong.
if ($query_data->userid != "")
{ echo "That record already exists!";}
else
{
if( $cpeora1 == $cpeora2 )
{
echo "fdaghbfdfdf";
echo "fdafdfdf";
}
else {
echo "Password and Validation Password did not match!";
}
}