<? function GetValue($var, $default) { if (isset($var) { return $var; } else { return $default; } } ?> // you would use it as follows: <? echo GetValue($w, 999999); ?>