Can someone help me with a script which compares two strings and returns true if they are the same??
$areTheSame = ($string1 == $string2)
thx but it wasn't really what i needed
hmmm... if (ereg($string1,$string2)) { //do this... } else { //do that... }
... in that case, what DO you need?