I would like to be able to edit a word in my page which automatically edits the title and another word at the bottom of the page to be the same word. Im understand this can be done with echos ? maybe ? Any ideas Basically i have to manually edit like 200 pages and instead of having to change all 3 words i would like to just change 1 word and all 3 change. Ta
Im not sure if I understood your question correctly but heres what I think anyway. If you havnt created your site yet you should create each page using the fomat below: <?php include("header.inc") ?> ...your content.. <?php include("footer.inc") ?> Where the files header and footer will obviously contain your header and footer information. Now if you want to change something all you have to do is edit the header or footer file and it will change in the rest of the site. If yourve already built your site I reccomend that you take this opportunity to convert your pages to the format above - include and css are designed to avoid situations such as this. Alternativley theres probably some software that will open each page/file on your site searching for a word and the replacing it for you - infact it wouldnt be to difficult to write something like this in php. I hope this helps you out - for the record Im a php newbie so what Ive said could quite possibly be entirely wrong Vijizzle