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
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
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
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