//Taken from the 10 chapter of Udemy course
					<?php

$x = 10;
$y = '10';


if ($x == $y) {

echo 'TRUE'; }

else

{ echo 'FALSE';

}
?>