[PHP-DB] Re: Working with dates

2002-05-23 Thread Michael Virnstein
www.php.net/mktime Manuel [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can anybody help me with this? How do you take a known date and add three month to it? Example: $effdate= 1/15/2002 - Do You Yahoo!?

[PHP-DB] Re: sessions

2002-05-23 Thread Michael Virnstein
make sure that there is no character anywhere before session_start(). this also includes whitspaces. so check you're files, if there are whitspaces before the ?php or if there's any include file included before the session_start, which has whitspaces before the ?php or after the ?. of course you

[PHP-DB] Re: Can't use iso8859-2 with PHP+Oracle

2002-05-22 Thread Michael Virnstein
the character set of the database is perhaps ascii7bit. change it to ascii8bit or to your ISO characterset, using alter database command. Ascii8 is the most flexible and should be used if you want to support more than one language. Could be found here:

[PHP-DB] Re: Can't use iso8859-2 with PHP+Oracle

2002-05-22 Thread Michael Virnstein
The database nls_characterset and nls_nchar_characterset are also EE8ISO8859P2. Oops, overwrote this...hmm...don't really know then. EE8ISO8859P2 hmm...not WE8ISO8859P2? but don't know exactly. for german it is GERMAN_GERMANY.WE8ISO8859P1 Regards Michael Michael Virnstein [EMAIL PROTECTED

[PHP-DB] passing php array to an Oracle function

2002-05-17 Thread Michael Virnstein
Hope there's any Oracle Guru around. :) Oracle 8.1.7: Asuming that I have the following object type: Create or Replace Type Test_Table_type as object (PK number(10,0), name varchar2(100)); and that I have the following package: Create Package Test_Pkg Is Type test_array_type is

[PHP-DB] Calling Oracle Functions

2002-04-30 Thread Michael Virnstein
Hi, i have the following problem: (database Oracle 8.1.7) we got a package ACCESSLIST with a function GETRIGHTS. this function returns a cursor. So what i want now is calling this function and walk through the returned cursor: this is what i have so far, but it brings me some errors: $query =

[PHP-DB] Re: Calling Oracle Functions

2002-04-30 Thread Michael Virnstein
php or do i need a procedur with an out parameter as wrapper for php? Regards Michael Michael Virnstein [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, i have the following problem: (database Oracle 8.1.7) we got a package ACCESSLIST with a

[PHP-DB] Re: how to question...

2002-04-05 Thread Michael Virnstein
quite simple, look here: http://www.php.net/manual/en/function.readdir.php Jas [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Ok here is what I would like to accomplish, I am sure someone has done something like this but I need an example to go from since