TV Guide PHP script / Database structure
I was looking for PHP TV guide scripts with it's Database struct开发者_开发知识库ure. Or at least the Database Structure by itself.
Any help or infomration would be really appreciated, I just don't want to start from scratch.
Thank you,
Why don't you want to start from scratch? I think it can be pretty straight-forward;
- A master tables with Channels (id, name, description)
- A master table with programs (id, name, description)
- A table with the guide (id, datetime, program_id, channel_id)
Of course you can extend this simple start with program-categories (i.e. movie or quiz), attendees/actors.
精彩评论