I am trying to compare two values in PHP using the following piece of codes :
if ($val1 != $val2) .....
if ($val1 <> $val2) .......
Are both the above comparison code same in all aspects ??
I am confused which operator to use amongst these two ( != and <> ) !!
update :
Has this got something to do with comparing strings or numerical strings ??