Like I
did point out, the
PHP Code:
if ($ravvarone = $cust_variableone && $ravvartwo = $cust_variabletwo)
needs to be
PHP Code:
if ($ravvarone == $cust_variableone && $ravvartwo == $cust_variabletwo)
since you're not comparing the two, but instead assigning them, which will allways result in a true statement, thus never reaching the else clause you have to catch it.
//edit I see Mike cought it too
