I wonder is anyone can help out with some php Logic Syntax ? ( php not my strong point ! )
I am having to adjust my SHip at ease output so that it does not include orders we are going to ship via royalmail .
So I have added the line
PHP Code:
$shiptype = $orders->fields['shipping_module_code'];
I now need to do a compare on that value .. so if $shiptype does not equal "royalmail"
thats the bit I am strugling on ... 
PHP Code:
if ($statustoship == SHIP_EASE_STATUS) and ($shiptype != "royalmail") {
Yep my syntax sucks and it errors.
thanks.