<html>
<head>
<title>dir_disk_free_space.php</title>
</head>
<body text="#000080" bgcolor="#CCFFFF">
Checking Disk Free space<br>
<?php
//dir_disk_free_space.php
$space = disk_free_space("C:");
$space = $space / 1000000000;
$total = disk_total_space("C:") /1000000000;
echo"Total : $total   Free : $space gb";
?>
</body>
</html>