[PHP-DB] Warning: ocilogon(): _oci_open_server: � in d:\program files\apache group\apache\htdocs\codebase\oci8test2.php on line 3

2005-02-01 Thread Bijilal Poikayil
Hi I am getting the error below while trying to execute the code below: Warning: ocilogon(): _oci_open_server: â in d:\program files\apache group\apache\htdocs\codebase\oci8test2.php on line 3 ?php $c=OCILogon(scott,tiger); /* if ($c=OCILogon(scott, tiger, orcl)) { echo Successfully

Re: [PHP-DB] timestamp

2005-02-01 Thread Balwant Singh
on echoing $timestamp i m getting Fri Jan 28 19:53:09 2005 but on echoing $date i m getting 1970-01-01. also i m getting full info. by phpinfo() i m using php 4.2.2 , apache 2.0 and rad hat 9. with best wishes balwant On Tue, 2005-02-01 at 12:40, graeme wrote: what output do you get from

RE: [PHP-DB] timestamp

2005-02-01 Thread Ford, Mike
To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm -Original Message- From: Balwant Singh [mailto:[EMAIL PROTECTED] Sent: 01 February 2005 08:08 on echoing $timestamp i m getting Fri Jan 28 19:53:09 2005 but on

[PHP-DB] php database connectivity issues

2005-02-01 Thread Adams, Jonathan K. [C]
Here is the error: Warning: sybase_connect() [function.sybase-connect]: Sybase: Unable to allocate connection record My configuration - The database is Sybase ASE 12.0 running on Solaris 8 The webserver is Apache 1.3.33 with PHP 5 running Solaris 9 The sybase libraries are shared via NFS, which

[PHP-DB] database connectivity problem

2005-02-01 Thread Adams, Jonathan K. [C]
Here is the error: Warning: sybase_connect() [function.sybase-connect]: Sybase: Unable to allocate connection record My configuration - The database is Sybase ASE 12.0 running on Solaris 8 The webserver is Apache 1.3.33 with PHP 5 running Solaris 9 The sybase libraries are shared via NFS, which

Re: [PHP-DB] database connectivity problem

2005-02-01 Thread Martin Norland
Adams, Jonathan K. [C] wrote: Here is the error: Warning: sybase_connect() [function.sybase-connect]: Sybase: Unable to allocate connection record My configuration - The database is Sybase ASE 12.0 running on Solaris 8 The webserver is Apache 1.3.33 with PHP 5 running Solaris 9 The sybase

[PHP-DB] Re: Warning: ocilogon(): _oci_open_server: â in d:\program files\apachegroup\apache\htdocs\codebase\oci8test2.php on line 3

2005-02-01 Thread JeRRy
snip I am getting the error below while trying to execute the code below: Warning: ocilogon(): _oci_open_server: â in d:\program files\apache group\apache\htdocs\codebase\oci8test2.php on line 3 /snip Aha line 3. Open oci8test2.php in notepad or something and browse to line three. Hit your

Re: [PHP-DB] Re: Warning: ocilogon(): _oci_open_server: â in d:\program files\apachegroup\apache\htdocs\codebase\oci8test2.php on line 3

2005-02-01 Thread Martin Norland
JeRRy wrote: snip I am getting the error below while trying to execute the code below: Warning: ocilogon(): _oci_open_server: â in d:\program files\apache group\apache\htdocs\codebase\oci8test2.php on line 3 /snip Aha line 3. Open oci8test2.php in notepad or something and browse to line three.

[PHP-DB] Best way to remove slashes?

2005-02-01 Thread Chris Payne
Hi there everyone, Whats the best way to remove slashes to stop the following from being output from a string: City = HYPERLINK file:///\\'Alliance\'Alliance\\\' Say the string is called $city, I tried the following: Stripslashes($city); but it didnt seem to work?