Jump to content

[SOLVED] FOPEN Inquiries


ivatanako

Recommended Posts

I am new into PHP programming and Im making a simple php site for my school project. Im having issues with the fopen function in PHP. I wanted to make a FOPEN php file, something like this

 

http://domain.com/viewarticle.php?name=sample.txt

 

Is this possible without mySQL? so that whenever I'll request for a page, it'll just fetch the textfile on the webserver. The url would be something like this.

 

http://domain.com/viewarticle.php?name=sample.txt

http://domain.com/viewarticle.php?name=sample2.txt

 

???

Link to comment
https://forums.phpfreaks.com/topic/68842-solved-fopen-inquiries/
Share on other sites

Ok, I do apologize..

 

<?php

$file = $_GET['name'];
$handle = fopen($file, "r");

?>

 

I have this save as viewarticle.php. Then i'm trying to fetch sample.txt, how would i do this?

 

I tried this one

http://domain.com/viewarticle.php?name=sample.txt

 

But it didn't fetch the text file. What am I missing?

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.