Re: [PHP] query problem.

2006-01-24 Thread Brian V Bonini
On Wed, 2006-01-25 at 08:01, Angelo Zanetti wrote: > Hi guys. > > I got an entry in a field called emailfrom in my table (MySQL db). > > The data in that field is: Sams Bank <[EMAIL PROTECTED]> > > I then do the following to retrieve the info, using a DB class > > $recordset=$conn->Execute("SEL

Re: [PHP] query problem.

2006-01-24 Thread Richard Lynch
On Wed, January 25, 2006 7:01 am, Angelo Zanetti wrote: > The data in that field is: Sams Bank <[EMAIL PROTECTED]> . . . > Why does the < > cause that not to be displayed? or is it retrieving > it > correctly but not showing it because of the < > (which might be > conflicting with HTML tags? You h

Re: [PHP] query problem.

2006-01-24 Thread Silvio Porcellana [tradeOver]
Angelo Zanetti wrote: (...) Why does the < > cause that not to be displayed? or is it retrieving it correctly but not showing it because of the < > (which might be conflicting with HTML tags? When showing things in an HTML page it's always a good idea to use 'htmlspecialchars' (or htmlenti

Re: [PHP] query problem.

2006-01-24 Thread David Grant
Angelo, Angelo Zanetti wrote: > Why does the < > cause that not to be displayed? or is it retrieving it > correctly but not showing it because of the < > (which might be > conflicting with HTML tags? Look at the source! David -- David Grant http://www.grant.org.uk/ -- PHP General Mailing List

Re: [PHP] Query problem

2002-11-12 Thread rija
: "Cesar Aracena" <[EMAIL PROTECTED]> To: "PHP General" <[EMAIL PROTECTED]> Sent: Wednesday, November 13, 2002 9:35 AM Subject: Re: [PHP] Query problem > The problem is that I have a remote "rented" server and I don't have access > to these c

Re: [PHP] Query problem

2002-11-12 Thread Ernest E Vogelsinger
At 23:35 12.11.2002, Cesar Aracena said: [snip] >The problem is that I have a remote "rented" server and I don't have access >to these configurations > >any other ideas are welcome. Thanks > >any ot > >- Original Message - >From: "BigDog" <[EMAIL PROT

RE: [PHP] Query problem

2002-11-12 Thread Davy Obdam
Hi Cesar, > Hi all, > > I came back from vacations and forgot some things about > queries... can anyone tell me what is wrong with this? of all > the error messages I set up in the script, none comes back on > the page but the record is not saved... Dont we all forget 'things' after vacations

Re: [PHP] Query problem

2002-11-12 Thread rija
$query = "INSERT INTO mararegistro (visitorid, fname, lname, borndate, address, city, country, phone, how) VALUES (null, 'c', 'c', '12', 'c', 'c', 'c', '12', 'c')"; I think you should put quotes around all of these values 12 exept null or change null to '' /// - Original Message - From:

Re: [PHP] Query problem

2002-11-12 Thread Cesar Aracena
> Cc: "PHP General" <[EMAIL PROTECTED]> Sent: Tuesday, November 12, 2002 11:51 AM Subject: Re: [PHP] Query problem > In your php.ini file you can turn on all the errors have have them > displayed... > > I would suggest doing that and you should see some errors if there ar

Re: [PHP] Query problem

2002-11-12 Thread BigDog
In your php.ini file you can turn on all the errors have have them displayed... I would suggest doing that and you should see some errors if there are any. Have you verified that dates in the database via mysql command line or gui application. On Tue, 2002-11-12 at 21:27, Cesar Aracena wrote: >