RE: Warning suppression?

2003-03-04 Thread Bryant Hester
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As far as suppressing errors you can suppress them in PHP by putting an "@" symbol in front of the function call, i.e. $result = @mysql_fetch_array($sql); HTH & HAND, Bryant Hester - -Original Message- From: databarn

RE: apostrophe and comma error on submit

2003-02-08 Thread Bryant Hester
ERT statements. It's also in the manual, somewhere HTH, Bryant Hester Mysql, query -Original Message- From: ahimsa [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 11:43 AM To: [EMAIL PROTECTED] Subject: apostrophe and comma error on submit Does anyone know abou

RE: converting text to hypertext

2003-01-08 Thread Bryant Hester
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rick, How are you pulling the data? PHP? Perl? ASP? HTML doesn't automatically insert hyperlinks where it finds http://www.somedomain.com. It has to be told that it is a link by the http://www.somedomain.com";>SomeDomain tag. If you are pu

RE: Install PHP with MySQL

2002-12-05 Thread Bryant Hester
-mysql-4.1.2-7.i386.rpm, and I am sure that there is a comparable rpm package for your version. HTH, Bryant Hester - -Original Message- From: Kenneth Illingsworth [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 7:50 AM To: < Subject: Install PHP with MySQL I recen

Re: Is it possible to export data from access to MySQL?

2002-11-26 Thread Bryant Hester
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, It is quite possible. You can use MyODBC to connect your current Access database(s) into your MySQL server directly, the major drawback is that you'd have to create the overall table structure in MySQL first and then link the table from MySQL

RE: does this list work or not?

2002-11-18 Thread Bryant Hester
y possible causes of this problem? But, I digress, please be assured that your posts are being received by the list. Bryant Hester - -Original Message- From: Siomara Pantarotto [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 17, 2002 9:22 AM To: [EMAIL PROTECTED] Subject: does this list w

RE: Null to a value...

2002-09-08 Thread Bryant Hester
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, If you need to change NULLs to a value all you need do is: UPDATE table_name SET field_name = 'your_value' WHERE field_name IS NULL; HTH, Bryant Hester - -Original Message- From: Chuck "PUP" Payne [mailto:[EMA

RE: UPDATE syntax dummy question...

2002-09-03 Thread Bryant Hester
. UPDATE vbooth_data SET optionText="Not at all, I'm waiting for the other shoe to drop" WHERE (pollID='34' AND voteID='3'); Or UPDATE vbooth_data SET optionText='Not at all, I\'m waiting for the other shoe to drop' WHERE (pollID='34'

RE: MS Access and mySQL

2002-08-28 Thread Bryant Hester
and will have to do some ALTER TABLE statements to put your keys back and the majority of your fields set to their proper type. HTH, Bryant Hester Juxtapose, inc. - -Original Message- From: Jonathan Coleman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:40 AM To: [EMAIL

RE: mysql.sock

2002-08-21 Thread Bryant Hester
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ozgur, I would make sure that your MySQL server is running. I believe this problem has been asked many a-time, and should be covered in the documentation. HTH, Bryant Hester Juxtapose, inc. > Hi All, > I am very new with mysql. I hav