Directories : disk_size()  round(disk_free_space($drive)


<html>
<head>
<title>disk free space key word</title>
</head>
<body text="#FFFF00" bgcolor="#000080">
<?php
$drive ="c:/";
echo " The Disk Free Sapce : ";
echo round(disk_free_space($drive)/10485760,2);
print " GB";
echo "<br> The Total Disk Free Sapce : ";
echo round(disk_total_space($drive)/10485760,2);
print " GB";

?>
</body>
</html>
Not accurate enough, deal with later on.