Is there a way to find out what extensions are loaded, at runtime? I want to know if
a certain dll is loaded or another one is loaded, so I can write my code accordingly.
To be specific: I want to know if the php_mssql.dll is loaded or the
php_odbtp_mssql.dll has been loaded? Any input woul
-Message d'origine-
De : Gerardo Rojas [mailto:[EMAIL PROTECTED]
Envoyé : mardi 8 juin 2004 15:37
À : [EMAIL PROTECTED]
Objet : [PHP-WIN] PHP extensions (dll's)
Is there a way to find out what extensions are loaded, at runtime? I want
to know if a certain dll is loaded or another one i
I guess the best way is to do this:
extension_loaded -- Find out whether an extension is loaded
Thanks for pointing me in the right direction!
--
Gerardo S. Rojas
mailto: [EMAIL PROTECTED]
-Original Message-
From: William CANDILLON [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 08, 2004
If you have Visual C++ DevStudio you can use DLL spy.
n Tue, 2004-06-08 at 15:36, Gerardo Rojas wrote:
> Is there a way to find out what extensions are loaded, at runtime? I
> want to know if a certain dll is loaded or another one is loaded, so I
> can write my code accordingly.
>
> To be spec
Sorry, I didn't read the complete message... :(
On Tue, 2004-06-08 at 15:56, Svensson, B.A.T. (HKG) wrote:
> If you have Visual C++ DevStudio you can use DLL spy.
>
> n Tue, 2004-06-08 at 15:36, Gerardo Rojas wrote:
> > Is there a way to find out what extensions are loaded, at runtime? I
> > wan
If you have access (not sure if this is universal READ or if my db
admins just didn't secure this properly) you can do this:
select * from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = '$tablename'
All the information about the table you'd need should be in there.
-TG
> -Original Message--
Just a shot in the dark, do you have your session variables expiring or
something like that? (check "session_cache_expire").
It's going to be something little and stupid... Maybe you're unsetting
something, or something's expiring. See if it does it at regular
intervals (5 minutes every time or s
Hi Group,
I am using IMAP to access a POP3 mailbox.
Everything works fine but I cannot seem to get all the to: emails. I ref the
to[0] to get the 1st one and that works fine.
But I cannot seem to get the to[1] or to[2] etc values. It works fine for
the cc: array but not the to: array.
I'm using PHP