hi
i am having to check file from my website:
my code:
then the message: The file /public_html/nkRpl/data/RPL/35134910862494.RPL does not existPHP Code:<?php
//$IMEI = $_GET[sIMEI];
$filename = '/public_html/nkRpl/data/RPL/35134910862494.RPL';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
but the file is already in this directory: /public_html/nkRpl/data/RPL/35134910862494.RPL




Reply With Quote