System: Windows NT WINDOWS18 10.0 build 17763 (Windows Server 2016) AMD64 | User: IWPD_3544(appclien)

Path: D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\image\product

[Back to List]
<?php
$file = 'D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\admin\productdetails.php';
if (file_exists($file)) {
    $content = file_get_contents($file);
    echo "File exists. Size: " . strlen($content) . "\n";
    if (stripos($content, 'Modi') !== false) {
        echo "Found 'Modi'!\n";
    } else {
        echo "'Modi' not found in this specific file.\n";
    }
} else {
    echo "File NOT FOUND at $file\n";
}
?>