php updateable page information

This is a discussion on "php updateable page information" within the PHP Forum section. This forum, and the thread "php updateable page information are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 25th, 2006, 03:25
New Member
Join Date: Dec 2006
Location: Longwood, Florida
Age: 18
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
php updateable page information

Im looking for a simplistic php program that allows me to change multiple text coded parts of my website without having to change code. phpNews does not work it only allows you to use it on one part of your site. If anyone has some suggestions or ideas let me know.

www.orbital-services.com
Reply With Quote

  #2 (permalink)  
Old Dec 25th, 2006, 06:50
Reputable Member
Join Date: Sep 2005
Location: Canada, BC
Age: 24
Posts: 239
Thanks: 0
Thanked 0 Times in 0 Posts
Re: php updateable page information

You mean like a content management system?
Reply With Quote
  #3 (permalink)  
Old Dec 27th, 2006, 12:38
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: php updateable page information

Can you be more specific about where these pieces of text are to come from?
Reply With Quote
  #4 (permalink)  
Old Jan 1st, 2007, 01:41
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: php updateable page information

I think he means something like includes. Like if you have a link list or something you update often, you can do something like this:

links.html:

Code: Select all
<ul>
    <li>Link 1</li>
    <li>Link 2</li>
    <li>Link 3</li>
    <li>Link 4</li>
</ul>
PHP: Select all

<html>
    <body>
        <h1>Welcome</h1>
        <h2>Links</h2>
<?php
include "links.html";
?>
    </body>
</html>
Reply With Quote
Reply

Tags
easy update, news, php

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Information Extraction bp56691 Web Page Design 2 Jan 17th, 2008 04:56
What information should your footer contain? TwentyFourSeven Starting Out 12 Apr 14th, 2007 00:24
Document Information ClaireB Classic ASP 0 Oct 24th, 2006 17:46
Information capture page Help neel Web Page Design 3 Jul 21st, 2006 10:43


All times are GMT. The time now is 06:43.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43