RE: first time to use MySQL on MS Platform with PHP.

2003-07-16 Thread Francis Van-Lare
7;price']; $information = $p['informatation']; Once this is done then the variables are defined and you can now call your insert query and those PHP warnings should go away. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 1

Re: first time to use MySQL on MS Platform with PHP.

2003-07-16 Thread colbey
Those are php notices (not warning or errors) .. change your ini error reporting settings.. you can either disable those messages or correctly initialize all variables before trying to use them. I'd suggest posting your msg to PHP list.. On Wed, 16 Jul 2003, Prabu Subroto wrote: > Dear my fr

RE: first time to use MySQL on MS Platform with PHP.

2003-07-16 Thread Jef S
L PROTECTED] > Sent: Wednesday, July 16, 2003 3:25 AM > To: Prabu Subroto; [EMAIL PROTECTED] > Subject: RE: first time to use MySQL on MS Platform with PHP. > > I think it is the code in functions you need to look at or the path in one > of > your ini files :) > > Andrew &g

RE: first time to use MySQL on MS Platform with PHP.

2003-07-16 Thread Rob A. Brahier
Prabu, This is kind of off-topic, as it is a PHP problem. ;) Those error messages are telling you that the variables you are trying to use were never initialized. This suggests to me that your PHP installation is set up with the register_globals option turned off. This means all of your

RE: first time to use MySQL on MS Platform with PHP.

2003-07-16 Thread Andrew
I think it is the code in functions you need to look at or the path in one of your ini files :) Andrew >-Original Message- >From: Prabu Subroto [mailto:[EMAIL PROTECTED] >Sent: 16 July 2003 10:14 >To: [EMAIL PROTECTED] >Subject: first time to use MySQL on MS Platform with PHP. > > >Dear m