Jump to content

[ resolved ] - Read file from a thingy.php


ztealmax

Recommended Posts

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

[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]
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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.