Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-use-Comparison-operator:-Not-equal-(!=)-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
$x = 100;  
$y = "100";

var_dump($x != $y); // returns false because values are equal
?>  

</body>
</html>

Output :