can some one help me with this code
}
$size = dir_size(".");
if ($size > 2097152)
echo "You are over your allocated disk space of 2mb of which you are using $size.Kb. Please delete some of your files or your account will be suspended.";
mail($email,"Over Disk Limit",$subj,"From: <$email>");
else {
echo "You are using $size.Kb of 2mb";
}
?>
i am trying to get this to return if size is greater that 2mb return the you are over and send the mail(). If not skip to the next.