ok, this will do what you want
<?
$var = "British Airways (BA / BAW)";
$pos = strpos($var, "(");
$var = substr_replace($var, "", $pos);
echo $var;
?>
but it will leave a space after the airline name, if there is always a space after the airline name and before the (, you can use this
<?
$var = "British Airways (BA / BAW)";
$pos = strpos($var, " (");
$var = substr_replace($var, "", $pos);
echo $var;
?>