what is the 'best' or nicest way to compare multiple vars ?
I need to know if $a[1] == $a[2] == $a[3] ... (for a random number of indexes...)
i know I could store the first, and loop through the array but dunno if there is a better way ?
<? if ( $a[1] == $a[2] || $a[1] == $a[3] ) { } ?>
Perhaps 😛
damn - what was I thinking 😉