What is this ???
PHP Code:
..
if ($ravvarone = $cust_variableone && $ravvartwo = $cust_variabletwo) {
...
This will result in a true statement no matter what, assigning a variable some value will allways result in the value beeing assigned to the variable, in this case, unless $cust_variableone or $cust_variabletwo holds a value of 0, this will allways be true..
Shouldn't there be a
== operator in use here ???