Re: MySQL Data Vanishing with FireFox

2006-12-28 Thread JamesDR
Matt Neimeyer wrote: I think it's your PHP application; how did you "debug" your application? All this is doing is letting our customer add their contacts to the database. This is on the "quick add" form and asks them to enter a first and last name and an email. I debugged by re-writing it

RE: MySQL Data Vanishing with FireFox

2006-12-28 Thread Jerry Schwartz
Sent: Thursday, December 28, 2006 9:33 AM > To: mysql@lists.mysql.com > Subject: Re: MySQL Data Vanishing with FireFox > > > I think it's your PHP application; how did you "debug" your > application? > > All this is doing is letting our customer add their contacts >

Re: MySQL Data Vanishing with FireFox

2006-12-28 Thread Peter Brawley
Matt, >$SQL = 'INSERT INTO Contacts (ContFirst,ContLast,ContEmail,UserID) VALUES ("' > .$_POST["ContFirst"].'","'.$_POST["ContLast"] > .'","'.$_POST["ContEmail"].'",'.$MyID.')'; >echo $SQL; >$result = mysql_query($SQL,$db); If userid is an int, why quote the $myid value? Did you che

RE: MySQL Data Vanishing with FireFox

2006-12-28 Thread Jerry Schwartz
Message- > From: Matt Neimeyer [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 28, 2006 9:33 AM > To: mysql@lists.mysql.com > Subject: Re: MySQL Data Vanishing with FireFox > > > I think it's your PHP application; how did you "debug" your > application? &g

Re: MySQL Data Vanishing with FireFox

2006-12-28 Thread Matt Neimeyer
I think it's your PHP application; how did you "debug" your application? All this is doing is letting our customer add their contacts to the database. This is on the "quick add" form and asks them to enter a first and last name and an email. I debugged by re-writing it temporarily to do this...

Re: MySQL Data Vanishing with FireFox

2006-12-27 Thread ViSolve DB Team
:15 PM Subject: MySQL Data Vanishing with FireFox We recently started getting reports that when users access our PHP based CRM system that it "didn't work". After much debugging and tracking down it looks like that ultimately what's happening is that SOMETIMES with a statement l

RE: MySQL Data Vanishing with FireFox

2006-12-27 Thread Jerry Schwartz
ta. Regards, Jerry Schwartz Global Information Incorporated 195 Farmington Ave. Farmington, CT 06032 860.674.8796 / FAX: 860.674.8341 > -Original Message- > From: Matt Neimeyer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 27, 2006 9:46 AM > To: mysql@lists.mysql.com >

Re: MySQL Data Vanishing with FireFox

2006-12-27 Thread Lemuel Formacil
On Wednesday 27 December 2006 18:45, Matt Neimeyer wrote: > We recently started getting reports that when users access our PHP based > CRM system that it "didn't work". After much debugging and tracking down it > looks like that ultimately what's happening is that SOMETIMES with a > statement like.

MySQL Data Vanishing with FireFox

2006-12-27 Thread Matt Neimeyer
We recently started getting reports that when users access our PHP based CRM system that it "didn't work". After much debugging and tracking down it looks like that ultimately what's happening is that SOMETIMES with a statement like... INSERT INTO Customers (A,B,C) VALUES ("One","Two","Three")