|
Posted by Rik on 12/17/70 11:55
Ψrjan Langbakk wrote:
> I wanna make a file that holds the complete pricelist for a small
> webshop (yes, I know that a database in the background would be a lot
> simpler, but that is not an option today, unfortunately).
>
> I'm thinking something like creating a file that holds the productname
> and the price, and then just get the price from the other pages that
> needs it. (Typically an overview page of all the products in a
> category, and the spesific product pages).
>
> I'm thinking it would be possible to create something like:
>
> #Product 1
> $produkt1 = 2000
> #produkt 2
> $produkt2 = 1400
>
> and so on
>
> Is this a good way to create this?
Why not create an CSV, and use fgetcsv() and fputcsv() to get/store the
data? That way it's still pretty easy to update/add/delete stuff, and you
could even run a database somewhere else that would periodically upload a
changed csv easily. Maybe even parse_ini_file() could help you here, but I
doubt it will handle very nicely once the shop grows.
Grtz,
--
Rik Wasmus
[Back to original message]
|