Log in

View Full Version : Help! External Text Files



rkm5150
05-26-2005, 08:21 PM
My client wants to use external text files to update content on his web page. Is there an easy way to do this without using php pr xml? thanks!

cr3ative
05-26-2005, 08:53 PM
Using PHP

<?php include("news.txt"); ?>

You can point all pages to news.txt, I believe.

cr3ative

/edit: change from require to include, sorry.