Ok I had thought about using a join, although I have never actually used one before.
The examples you demonstrate seem logical, my problem is that this is the SQL statement I am using.
"SELECT jobid, date, title, description, location, skills, salary, industry, contactid FROM job WHERE jobid = '$jobid' ";
BUT
I also want to execute this SQL statement:
"SELECT contactid, contact_fname, contact_lname, contact_email FROM contact WHERE contactid = job.contactid";
Could these two queries be joined in to one? Or am I asking too much?