PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
if ($result=true){
echo "Your Message Has Been Sent. You can view your pms " . '<a href="viewpms.php">Here</a>';
die;
}
if ($result=false){
echo "No user by that name exists";
die;
}
A = B // A is now equal to B
A == B // A and B are equal.
A === B // A and B are equal and of the same type, i.e., TRUE is TRUE and 1 is one 1, but 1 is NOT TRUE.