Re: [PHP] SMS

2001-12-06 Thread Daniel Berwig
ms->errorCode . "\n" ); > } > else { > // walk the carrier list array > array_walk( $sms->carrierlist, displayCarrier ); > } > > function displayCarrier( $c ) { > // display the carrier info > print( "ID: " . $c->id . "\n" ); >

[PHP] SMS

2001-11-30 Thread Daniel Berwig
Does anyone know how could I send data from php through SMS to a cel phone? I simply can't find info about that. Thanks in advance, Daniel Berwig. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

[PHP] Re: auto form submit

2001-11-21 Thread Daniel Berwig
A way to do it is puting a javascript like this at the end of the page: where form1 is the form name you have in the page. When the page is loaded, it will then submit the form. "Wm" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL P

[PHP] Re: Multiple Entry SELECT and JavaScript interaction

2001-11-20 Thread Daniel Berwig
I almost forgot that... you can refer to the form element by the objects array, like this: document.form[0].elements[1].value "Sean Dougherty" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a curious problem that I don't have a clue how to solve t

[PHP] Re: Multiple Entry SELECT and JavaScript interaction

2001-11-20 Thread Daniel Berwig
You can't use brackets in this case. The Javascript won't reconize the name of the form element. Try using another caracter that can be reconized, like underscore. "Sean Dougherty" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a curious problem th

[PHP] Re: Loading a dll

2001-11-16 Thread Daniel Berwig
It doesn't load the dll, when specifying the path (relative path neither absolute path). Any solution? Daniel Berwig "Henrik Hansen" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] (Daniel Berwig) wrote

[PHP] Re: Loading a dll

2001-11-16 Thread Daniel Berwig
The problem is that the php tries to load the dll from the extension_dir. Is there a way to make it load from anywhere else? "Henrik Hansen" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] (Daniel Berwig) wrote:

[PHP] Loading a dll

2001-11-16 Thread Daniel Berwig
Does anyone know if it is possible to load a dll at runtime that is not in the extensions_dir configured in the php.ini? And if it is possible, how can I do it? Thanks in advance. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

[PHP] getrusage() not supported

2001-11-13 Thread Daniel Berwig
I'm trying to run a script in my server (IIS 5) that uses the function getrusage(), but it returns the following warning: Warning: getrusage() is not supported in this PHP build in file_name.php on line 377 Does anyone know how I can solve this problem? Thanks in advance. -- PHP General Ma