Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

spark at limao dot com dot br
14 years ago
this code here is in case you want to check if a file exists in another server:

<?php
function fileExists($path){
return (@
fopen($path,"r")==true);
}
?>

unfortunately the file_exists can't reach remote servers, so I used the fopen function.

<< Back to user notes page

To Top