Hello all!
I am building an application and I've got some problems with MYSQL(I am newbie in it). Basically I am trying to build an application whose basic database structure looks like this:
Table jokes:
field id
field name
field email
field author_id
Table authors
field author_id
field author_name
Now what I want is to be the author_id field relational to both tables. How can I do it without the php script to write the id on both tables? How do I set up my database?
I hope I was able to clear myself.
Thanks!

