Answers for "php if variable equals"

PHP
1

php if variable equals

<?php
	// if given an variable to check or validate
  	$text = "issac";
	if($text == "issac"){
    	echo "Cool";
    }else{
    	echo "Huston, We've got a problem";
    }

// result : Cool

//Symbol Guide: 
// == ->> Equals to
// === ->> Strictly Equals to
// != ->> Not Equals to
// !== ->> Strictly not equals to 
// Hope this helps Godspeed.
?>
Posted by: Guest on June-20-2021

Browse Popular Code Answers by Language