i am reading file and getting content , on localhost it is working and displaying result.
but after uploading on server , not displaying or echo relevant content of file?
any help appre
thnx
$tcnt = 0;
$file = fopen("/home/uploads/date/".$list."_".$Type.".txt", "r") or exit("Unable to open file!");
$file_rl = $file;
while(!feof($file)) {
$line=fgets($file);
if($line!='') {
$lineq=explode("|",$line);
if($tcnt==0){
$head=$lineq;
foreach($lineq as $fields){
//echo $fields.", ";
echo "<pre>";
print_r($fields);
}
}
else{
// insertion code goes here
}