Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Matthew K. Gold
: Rich Hutchins <[EMAIL PROTECTED]> To: Matthew K. Gold <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 08, 2002 5:39 PM Subject: RE: [PHP-DB] passing variables from one page to another > Just wanted to eliminate one possible problem area. If the query works, then >

RE: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Rich Hutchins
ow us what's being parsed by the browser. -Original Message- From: Matthew K. Gold [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 5:07 PM To: Hutchins, Richard; [EMAIL PROTECTED] Subject: Re: [PHP-DB] passing variables from one page to another It works from the command line if I

Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Matthew K. Gold
27;ve mentioned, I'm very new at this, so the answer could be very basic. thanks, Matt - Original Message - From: Hutchins, Richard <[EMAIL PROTECTED]> To: 'Matthew K. Gold' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 08, 2002 4:35 PM Subje

RE: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Hutchins, Richard
Matthew, have you tried running your query from the command line in MySQL? If you can do that successfully, that'll prove that the query is functioning properly and the problem can be tracked elsewhere. -Original Message- From: Matthew K. Gold [mailto:[EMAIL PROTECTED]] Sent: Monday, July

Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Matthew K. Gold
t (""); ?> - Original Message - From: Daniel Brunner <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 08, 2002 4:04 PM Subject: Re: [PHP-DB] passing variables from one page to another > Hello!! > > How are you fetching t

Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Daniel Brunner
after adding it. > > best, > > Matt > > - Original Message - > From: Martin Clifford <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Monday, July 08, 2002 3:47 PM > Subject: Re: [PHP-DB] passing variables from one page to

Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Matthew K. Gold
onday, July 08, 2002 3:47 PM Subject: Re: [PHP-DB] passing variables from one page to another If that is your exact code, then you need to have an ending quote after the query is written. Like this: $query = "Select * from course, disc, instit, prof where course.CourseID = $CourseID an

Re: [PHP-DB] passing variables from one page to another

2002-07-08 Thread Martin Clifford
If that is your exact code, then you need to have an ending quote after the query is written. Like this: $query = "Select * from course, disc, instit, prof where course.CourseID = $CourseID and course.DiscID = disc.DiscID and course.InstitID = instit.InstitID and course.ProfID = prof.ProfID";