• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Updatable Website?

Rhombuss

Golden Member
I'm helping a friend design a website for his computer hardware store. We're just wondering what the best way of creating the site so that it is easily updatable. IE - hardware and prices can be updated the easiest.

One way is to just download the HTMLs and edit them locally, then repost them on the site - but that can be cumbersome. Would PHP/CGI be useful for something like this? How do online stores manage the updates of their products?

A detailed answer would be greatly appreciated! 🙂
 
You pretty much need a database to do something like that, or as you said, the updating of every single html page would be awfully cumbersome. 🙂

I'd suggest, if you know nothing of PHP/ASP and databases, perhaps hire someone to whip a site up for you. For something as simple as having an updateable price list, it really wouldn't be a big job at all, but would be big enough to overwhelm a person whose never attempted such a thing before.
If you've got the time and motivation to try it yourself, assuming you're running a Windows server, grab PHPTriad and it'll set everything up for you, then you just need to learn basic PHP/SQL, create the database, webpages, and start entering information.
Those are the terms you'll see flying around when trying to set something up like you want, in general. PHP, SQL(some variation), Apache/IIS.
 
database-driven is definitely the way to go. the page is created from the numbers in the database. then you can create your own interface to update prices. of course youll want to protect this page so not just anyone can access it.
 
Back
Top