TV Guide PHP script / Database structure

I was looking for PHP TV manual scripts with its database structure. Or at least the database structure itself.

Any help or information would be greatly appreciated, I just don't want to start from scratch.

Thank,

+3
source share
1 answer

Why don't you start from scratch? I think this can be quite straightforward;

- 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 expand this simple start with the categories of programs (for example, film or quiz), participants / participants.

+2
source

Source: https://habr.com/ru/post/1741230/


All Articles