Web Development Thread, Import a text file into a live web page in Coding and Web Development; This is probably a really basic thing to do, but is beyond me at the moment! I am putting together ...
-
28th January 2008, 11:13 PM #1
- Rep Power
- 0
Import a text file into a live web page
This is probably a really basic thing to do, but is beyond me at the moment! I am putting together a standardised Home Page for the school, Firefox stylee, and want to have text on there taken from a .txt file which will also be kept on the server, but accessible by the Head/secretary etc for dates, messages etc.
The trouble I'm having is I don't know how to get the .html code to go to a text file and read it. Any suggestions/ideas?
-
-
IDG Tech News
-
28th January 2008, 11:51 PM #2 You can't do it directly with html, but you can with some form of language - either client or server side.
Personally I would say the easiest way would be to use shtml. http://httpd.apache.org/docs/1.3/howto/ssi.html
Or you could use php, and the include tag: http://uk.php.net/include/
Or in javascript like this: http://www.netmechanic.com/news/vol4/javascript_no9.htm
Or, if you're feeling evil, you could use an iframe to do it: http://www.w3schools.com/tags/tag_iframe.asp
-
Thanks to localzuk from:
mrlegs (29th January 2008)
-
29th January 2008, 12:56 AM #3 To extend on what localzuk has said. If you're using Apache as your webserver then a nice PHP include is what I'd use.
If you're using IIS and don't want to switch to Apache or install PHP for IIS then you could use the SSI method that localzuk has linked to within IIS. A bit of googling will tell you how to enable shtml and SSIs within IIS.
Last edited by Joedetic; 29th January 2008 at 01:00 AM.
-
-
29th January 2008, 10:36 AM #4 Maybe its overkill but have you looked at the EduGeek Joomla! package? this is a full featured site in one package ready to deploy on a web server.
search here for it, its pretty smart.
-
-
29th January 2008, 10:59 AM #5
- Rep Power
- 0
It certainly seems like the direction the school is heading, and I know Joomla is quite effective as an intranet device.
Thanks for all the ideas folks. I will attempt them in order!
-
-
29th January 2008, 11:43 AM #6 I'd also suggest sharepoint
we use it for our intranet and its been great!
-
-
29th January 2008, 01:33 PM #7 Surely you can just just the include option that should work in basic html??
<!--#include file="file.txt"-->
-
-
29th January 2008, 01:47 PM #8 
Originally Posted by
limbo
Surely you can just just the include option that should work in basic html??
<!--#include file="file.txt"-->
That only works with server-side SHTML.
-
-
29th January 2008, 03:13 PM #9 If you have PHP:
<?php
readfile("somedoc.txt");
?>
If you want to do this in STRAIGHT HTML (no serverside stuff needed) you could use regular frames:
<FRAMESET rows="100%">
<FRAME src="somedoc.txt">
</FRAMESET>
or for the uber hack: rename the .txt to .htm!!
or, you MIGHT just be asking for a simple thing like how to link to other documents rather than show the document on a .htm, to do this you just use a hyperlink like so:
<a href="somedoc.txt">Some Description Here</a>
Last edited by Friez; 29th January 2008 at 03:16 PM.
-
-
29th January 2008, 03:56 PM #10 Just a quick note though - frames are not very accessible to those with poor eye-sight etc...
-
SHARE:
Similar Threads
-
By thom in forum ICT KS3 SATS Tests
Replies: 9
Last Post: 20th May 2009, 03:27 PM
-
By timbo343 in forum Scripts
Replies: 4
Last Post: 7th March 2007, 04:37 PM
-
By PiqueABoo in forum Scripts
Replies: 5
Last Post: 14th December 2006, 12:09 AM
-
By broc in forum ICT KS3 SATS Tests
Replies: 6
Last Post: 21st March 2006, 02:11 PM
-
By adamyoung in forum How do you do....it?
Replies: 11
Last Post: 9th February 2006, 03:35 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules