[PHP-WIN] PHP/Oracle/Web Server Setup Question

2001-05-14 Thread Woods Ron Contr SA-ALC/FMIS
Title: GAI I'm trying to setup PHP/Oracle scripts with PHP running on WinNT 4.0 and Oracle running on Solaris 8.   The problem I am having, I believe, is giving our Netscape Enterprise Server the proper paths to the Oracle files that seem to come automatically to the IIS server.   When I run

[PHP-WIN] PHP 4.0.4 With Multiple Oracle Homes

2001-05-02 Thread Woods Ron Contr SA-ALC/FMIS
I know the php_oci8.dll works with Oracle 8.1.6 drivers, but has anyone ever tried this on a server with multilple ORACLE HOMES? One of our server apps cannot use the Oracle 8 drivers so we must continue using the 7.3 Oracle client. I know Oracle 8i supports multiple homes so I believe I can inst

RE: Re[2]: [PHP-WIN] Converting apostrophes for insertion into Or acle

2001-02-06 Thread Woods Ron Contr SA-ALC/FMIS
I had the exact same problem recently with one of my forms. The only way I could resolve it was to convert all of the ' characters to a double character combo like ~` using $instring=eregi_replace("'", "~`", $instring) before the db insert/update and reversing it on the db selects. Ron Woods/GAI

RE: [PHP-WIN] Text area

2001-01-30 Thread Woods Ron Contr SA-ALC/FMIS
Your problem is probably not with the form passing the data; it's in your storing it in the db. Remember there's probably lots of \n characters in a text field. If you try to put these into a db field your results are unpredictable; meaning the db software may or may not handle them properly. Try