ztealmax Posted December 13, 2006 Share Posted December 13, 2006 Hello again, its little me ;)I want to have a little snippet that can read text files like this:[b]READ.PHP?=textfilename.txt[/b]How would i do something like that?This is the read text file code i have today, however dont know how to make it so it opens selected text file[code]<?php// set file to read$file = 'x101_news/filename.txt';// open file $fh = fopen($file, 'r') /*or die('Could not open file!')*/;// read file contents$data = fread($fh, filesize($file)) /*or die('Could not read file!')*/;// close file fclose($fh); // print file contents echo $data; ?>[/code] Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/ Share on other sites More sharing options...
fert Posted December 13, 2006 Share Posted December 13, 2006 [code]<?php// set file to read$file = $_GET[''];// open file $fh = fopen($file, 'r') /*or die('Could not open file!')*/;// read file contents$data = fread($fh, filesize($file)) /*or die('Could not read file!')*/;// close file fclose($fh); // print file contents echo $data; ?>[/code] Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/#findComment-140193 Share on other sites More sharing options...
ztealmax Posted December 13, 2006 Author Share Posted December 13, 2006 Thank you, i just tried it don't know if im doing something wrong, but dont seem to get it working:[b]read.php?=textfilename.txt[/b]Or should it open in some other way? :) Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/#findComment-140195 Share on other sites More sharing options...
fert Posted December 13, 2006 Share Posted December 13, 2006 try[code]<?php// set file to read$file = $_GET[0];// open file $fh = fopen($file, 'r') /*or die('Could not open file!')*/;// read file contents$data = fread($fh, filesize($file)) /*or die('Could not read file!')*/;// close file fclose($fh); // print file contents echo $data; ?>[/code] Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/#findComment-140197 Share on other sites More sharing options...
craygo Posted December 13, 2006 Share Posted December 13, 2006 how about read.php?text=textfilename.txt[code]$file = $_GET['text'];$text = nl2br(file_get_contents($file));echo $text;[/code]Ray Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/#findComment-140199 Share on other sites More sharing options...
ztealmax Posted December 13, 2006 Author Share Posted December 13, 2006 thanx [b]fert and craygo[/b] :D works like a charm :P//Martin Link to comment https://forums.phpfreaks.com/topic/30442-resolved-read-file-from-a-thingyphp/#findComment-140201 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.