Jump to content

call a txt file


icefire

Recommended Posts

wow.. Thanx..  :D

 

but still a small problem  :-\

 

i have a menu in my site contains txt files.

 

what i want is when a user chose a txt file from menu the path of the txt file will put automatically in code for example (path/to/file2.txt).

 

i hope you understand what i mean  ;D

 

sry for my "Broken English"  <-- nice movie  :P

 

Link to comment
https://forums.phpfreaks.com/topic/205458-call-a-txt-file/#findComment-1075210
Share on other sites

include/m2.php

 

<html>
<body>
<font face="verdana,arial" size="3">
<div align="center">
<form action="showcode.php" method="post" name="form123" target="iframe2">
<textarea name="msg" cols="32" rows="16"><?php echo file_get_contents('C:\xampp\htdocs\XXXX\file01.txt') ?></textarea>
<input type="submit" value="Show" />
</form>
</font>
</div>
</body>
</html>

 

menu.php

<div>
<ul>
<li><a href="file01.txt" target="form123">Getting started </a><a href="file01.html" target="iframe2">(file01)</a></li>
<li><a href="file02.txt" target="form123">Getting started </a><a href="file02.html" target="iframe2">(file02)</a></li>
<li><a href="file03.txt" target="form123">Getting started </a><a href="file03.html" target="iframe2">(file03)</a></li>
<li><a href="file04.txt" target="form123">Getting started </a><a href="file04.html" target="iframe2">(file04)</a></li>
<li><a href="file05.txt" target="form123">Getting started </a><a href="file05.html" target="iframe2">(file05)</a></li>
    </ul>

    <p> </p>
    <p> </p>
    <p> </p>
<p> </p>
    <p> </p>
    <p> </p>
</div>

Link to comment
https://forums.phpfreaks.com/topic/205458-call-a-txt-file/#findComment-1075219
Share on other sites

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.