View Single Post
Old 01-19-2003, 02:39 PM  
Cogitator
Confirmed User
 
Join Date: Feb 2002
Location: Florida
Posts: 672
I always create a function like:
PHP Code:
<?
function GetValue($var, $default) {
    if (isset($var) {
        return $var;
    } else {
        return $default;
    }
}
?>

// you would use it as follows:

<?
echo GetValue($w, 999999);
?>
__________________
- this space intentionally left blank -
Cogitator is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote