Re: [PHP] PHP SOAP Client formats

2008-01-15 Thread Michael Gross
Hi I have a similar problem, only the other way round: the server is PHP, the client is C#. I found that the problem is that the xmlns="https://api.authorize.net/soap/v1/"; in the "AuthenticateTest"-tag is needed. I tried to modify the PHP source code, but I had no success yet (it would be fant

[PHP] Strange Right-Shift Problem

2005-12-29 Thread Michael Gross
that the result is 495070? If I understand it, I implement my "own" shift function. thanks a lot Michael Gross -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] what is the problem with this query?

2005-12-29 Thread Michael Gross
"read" is a reserved word in mysql (http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html). You have to double-quote reserved words: mysql_query("SELECT * FROM mailbox WHERE \"read\"=''"); Graham Cossey wrote: On 12/29/05, Jay Blanchard <[EMAIL PROTECTED]> wrote: [snip] could you pl

Re: [PHP] Strange Right-Shift Problem

2005-12-30 Thread Michael Gross
if ($bits[ 0]) $i|=0x0001; if ($bits[ 1]) $i|=0x0002; if ($bits[31]) $i|=0x8000; return $i; } function rshift($i, $n) { if ($i < -2147483648) { $i = convertto32($i); } return $i >> $n; } thx Michael Gross Richard

Re: [PHP] AT / php / apache question

2006-01-02 Thread Michael Gross
Hi You could call the script via the http-server with wget (or lynx). david blunkett wrote: Dear PHP users, I am trying to write a php script that allows me to schedule jobs using the at deamon (unix) for execution in the arbitrary future. I have everything working except that the default l