| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/New folder/New folder/software/Services/EmailPenpalAfrica/php/ |
Upload File : |
<?PHP
$filename = "tdf.xml";
$fp = fopen($filename, "r");//open file in read mode
$contents = fread($fp, filesize($filename));//read file
$cnt=0;
$tdf_id_start =1;
while ($cnt <532){
$tdf_id_first = strpos($contents,'ClearValue<Field>Usage Counter value</Field><Index><Value datatype="Integer">',$tdf_id_start);
$tdf_id_second = strpos($contents,"</Value>",$tdf_id_first);
//echo "<pre>$tdf_id_first</pre>";//printing data of file
//echo "<pre>$tdf_id_second</pre>";//printing data of file
$tdf = substr($contents,$tdf_id_first+77,$tdf_id_second-($tdf_id_first+77));
echo $tdf."\n";
$tdf_id_start= $tdf_id_second;
$cnt++;
}
fclose($fp);//close file
?>