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
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]
Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.