Re: [PHP-DB] to determine how much server space left on the webserver?

2002-09-17 Thread Adam Williams

?php

exec(df -h);

?

On Tue, 17 Sep 2002, Bo wrote:

 Any ideas of how to write a php script to determine the disk space left in
 my account at my web server?






-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DB] to determine how much server space left on the webserver?

2002-09-17 Thread Rafael Mueller

?php
echo `quota -v`;
?
this works here.

On Tue, 17 Sep 2002, Bo wrote:

 Any ideas of how to write a php script to determine the disk space left in
 my account at my web server?
 
 
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 

+-+
|Rafael Mueller   | 
|Computação - UFSC|
|Linux User #271799   |
|UIN #97699276| 
|Dividir para conquistar! |
+-+



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DB] to determine how much server space left on the webserver?

2002-09-17 Thread Adam Williams

actually make that system(df -h);



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php