I'm working on a site that also has a separate mobile version. There are some things on the site that will change occasionally like ticket prices. Is there a relatively simple way to handle this so that these updates would only need to be made once? I thought about using SSI, but I don't see how that could work as there are multiple rates that would need to be updated on both sites. Is there a way to pull the value from another file to populate the prices on both sites? Anyone here that can at least point me in the right direction? I greatly appreciate it.
There are two simple ways to achieve what you want: - You can put all your text in a database and then call it to your site text-holders with PHP. For this you need some moderate knowlegde of php/mysql and can be somehow more confusing (depending on your site structure) but, if you want, you'll be able to implement some front-office options later so you'll be able to edit your text directly on your page. - The simpler way (again, the better option for you will depend alot on your site structure) is to use SSI. For this you also need to separate all the diferent texts you'll want to edit on diferent files but it's easier implement. Just put some catchy names on your SSI files so you'll be able to find what you need to edit fast.