Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Bluray Database

Asked Modified Viewed 944 times
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
asked
Senior Member

Hi
i want to build a Bluray Database with some fields and Image Upload/Show
Is a Infusion for this everywhere aviable or i have to create this completly new?

I have never build a infusion or modification for php fusion but will dont change the CMS.
I know wordpress and other have databases what i like. but i will stay on php fusion :)

Can anyone help me with suggestions or snipplets?
0 replies

2 posts

N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
answered
Senior Member

Maybe some of these could work for you:

https://php-fusion.co.uk/infusions/addondb/directory.php?category=177

As to get what you need would perhaps require a custom build.

You can reference PHPFusion Development Documentation for building your own.

https://php-fusion.co.uk/infusions/wiki/documentation.php?page_id=1
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

Ok from beginning. I guess i need to bginning a Database Structure.
so now i have google and found following: https://code.google.com/p/imdbdumpimp...a.sql?r=19

Here i found a goog expample:

Quote



Actor table
id (primary key)
first name
last name
etc. (any additional columns you want to store on an actor)

Director table
id
first name
last name
etc.

Genre table
id
name
etc.

Film table
id
title
description
running time
release date
director id -- this is a foreign key that refers to the id (the primary key) of the director who directed the film
genre id -- like the director id, this refers to the id of the genre the film belongs to

Actor-film index table
film id -- this is a foreign key that refers to the id of the film
actor id -- this is a foreign key that refers to the id of one actor in the film.

------------------

Films => Primary Key(filmid), Unique Constraint(filmtitle, year),
runningtime, description,
Foreign Key(Genre), Foreign Key(DirectorId)

Genre Table => Primary Key(Genre)

Director Table => Primary Key(DirectorId), DirectorName

Actors Table => Primary Key(ActorId), ActorName

Films_Actors => Primary Key(Foreign Key(ActorId), Foreign Key(FilmId))

Source: http://stackoverflow.com/questions/490464/how-to-design-a-movie-database


Is this ok or should i change some things?


I have found a external open sourve tool: ( http://sourceforge.net/projects/ajaxfilmdb/ ) can i include this as infusion?
Edited by Catzenjaeger on 06-05-2015 13:54,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 2 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

C
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
N
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet