Re: [PHP] Delegating variable-length argument lists

2010-07-05 Thread Jakob Günther
Am 02.07.2010 19:34, schrieb Adam Richardson: > On Fri, Jul 2, 2010 at 11:49 AM, Jakob Günther <mailto:macgu...@web.de>> wrote: > > > I did not find a solution, so i tried passing a array with references. > > $arr = array(&$a, &$b); > bi

Re: [PHP] Delegating variable-length argument lists

2010-07-02 Thread Jakob Günther
worked in a test-case in one file. But if i call the bind-param-method from another class it did not work. Do you have any suggestions on this? Am 02.07.2010 17:25, schrieb Jakob Günther: > Hi, > > i'm writing a custom wrapper for the mysqli_stmt class. I have to > override the

[PHP] Delegating variable-length argument lists

2010-07-02 Thread Jakob Günther
qli_stmt, 'bind_param'), $sParams); } But this is not working, because I need to pass it by reference. Is there a way to retrieve references to a variable number of arguments? Thx, Jakob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] 4.3.11 and PEAR

2005-04-01 Thread Jakob Goldbach
Hi, What happened to all the pear packages that were in 4.3.10 ? I don't see this change in the changelog :-) $ tar ztf php-4.3.10.tar.gz | grep tar | grep pear php-4.3.10/pear/packages/HTTP-1.2.2.tar php-4.3.10/pear/packages/Net_Socket-1.0.1.tar php-4.3.10/pear/packages/Mail-1.1.3.tar php-4.3.10/p

[PHP] Re: convert seconds to hours, minutes, seconds

2003-06-03 Thread Jakob Mund
). then u substract the number of ( hours*3600 + minutes*60 ) from 178607 and you got the seconds.. :-) Jakob 'iNstinct' Mund :) "Chinmoy Barua" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hello everybody, > I have a value 178607, which i

[PHP] Re: Auto refresh

2003-06-03 Thread Jakob Mund
My advice to you is to use javascript.. "Kurosh Burris" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hi Everyone, > > I'm now trying to add an "auto refresh" in a .php file, so that it > automatically refreshes the same page every 15 mins. Is there an upper > limit to the h

Re: [PHP] Unix passwd file

2002-10-04 Thread Jakob Breivik Grimstveit
Scott wrote: >[...] does anyone know if I populate a MySQL >table with the login/password can php then use that encrypted password to >validate users? > > <http://www.php.net/manual/en/function.crypt.php> should be the answer to your questions. -- jakob -- PHP

RE: [PHP] MORE Design Problem

2002-05-30 Thread jakob
http://httpd.apache.org/docs/mod/mod_rewrite.html hth, Jakob. > http://www.phpbuilder.com/columns/tim2526.php3 > > > - James > -- > W: www.londontown.com > @: [EMAIL PROTECTED] > -- > > -Original Message---

Re: [PHP] Design Problem

2002-05-30 Thread jakob
URL, i.e. everything after and including the "?" character. to overcome this, you should use url rewrite mechanisms which can turn http://www.example.com/page.php?key1=val1&key2=val2 to http://www.example.com/page/val1/val2 hth, Jakob. -- PHP General Mailing List (http://www.php.net

[PHP] how to use saxon.jar from php?

2002-03-04 Thread Jakob
m within PHP? Or is this too resource-hungry, and should be avoided in a production environment? Thanks for your help in advance, -- Jakob. PS: cc'ing me is appreciated, as I am on the digest list. thanks. -- Jakob. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Problem with ImageMagick and PHP on Windows

2001-09-21 Thread Jakob
p 21 15:13:30 2001] [error] [client xxx.xx.x.xx] identify: Missing an image file name. How can I make this work through PHP on Windows? Thanks for your help. CC to my email appreciated, as I am on the digest list. Thanks, Jakob. Jakob - icq #69728667 -- PHP General Mailing List (http

[PHP] how to find out the mysql version from php?

2001-07-10 Thread Jakob
the beginning of a name: mysql> SELECT * FROM pet WHERE name REGEXP BINARY "^b"; " is there a way to find out _programmatically_ which version of mysql is running (phpinfo() gives some information, but i don't know how this can be accessed) on the server. thanks in adva

Re: [PHP] mysql_free_result() question

2001-06-23 Thread Jakob Kruse
a "row" from such a result. Using mysql_free_result on a row is not advisable. Also, in my terminology, the "query" would be the string passed to mysql_query(), so you could do like this: $query = "select ..."; $result = mysql_query($query); $row = ... Regards, Jakob K

Re: [PHP] Netscape 6, What a piece of s$#@ , anyone else had problems with php and Netscape 6?

2001-05-19 Thread Jakob Kruse
. It really is quite nice, and it *will* teach you how to write compliant HTML. Regards, Jakob Kruse "Brandon Orther" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > This is the HTML that is returned by PHP. Does anyone know why Net

[PHP] exit in function

2001-05-18 Thread Jakob Kruse
ashes. Why? Regards, Jakob Kruse PS: I know it isn't very nice to use exit that way, but I'm trying to run some PHP software that uses it extensively. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PHP] zlib or gzip compression?

2001-05-16 Thread Jakob Kruse
fast. Regards, Jakob Kruse "Alex Dupre" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > What are the differences between "output_handler = ob_gzhandler" and > "zlib.output_compression = On" ? > > Alex Du

Re: [PHP] include("../file.inc");

2001-05-11 Thread Jakob Kruse
You may need to set your include_path to "." in php.ini. Than again maybe not. Try it. Then include "../file.inc" should work (on Unix or Linux, use "\" on Windows). Regards, Jakob Kruse ""Matthew Ralston"" <[EMAIL PROTECTED]> wrote

Re: [PHP] Php.ini style change

2001-05-11 Thread Jakob Kruse
problem separating the comment lines from the rest. Such is life - always people to disagree with ;-) Regards, Jakob Kruse "Jonatan Bagge" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Can anyone tell me why they checnged the sty

Re: Re[2]: [PHP] Newbie redirect/variable question

2001-05-10 Thread Jakob Kruse
Well, that just means you have to rewrite the line: header("Location: $HTTP_GET_VARS['fred']"); like this: header("Location: " . $HTTP_GET_VARS['fred']); But have you tried it with just $fred? You shouldn't have to use $HTTP_GET_VARS.

Re: [PHP] SESSIONS: Why does PHP not erase session files in /TMP

2001-05-10 Thread Jakob Kruse
do garbage collection every time a session starts. Lower values should work as well, just with a little delay. Regards, Jakob Kruse ""Davor Pleskina"" <[EMAIL PROTECTED]> wrote in message 9ddf72$j2t$[EMAIL PROTECTED]">news:9ddf72$j2t$[EMAIL PROTECTED]... > I ha

Re: [PHP] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Jakob Kruse
Ehm... did you enable the tags in the php.ini file? If the code is being shown on the page it stands to reason that PHP did not process the page at all. Regards, Jakob Kruse "Maxim Maletsky" <[EMAIL PROTECTED]> wrote in message DC017B079D81D411998C009027B7112A015

Re: Re[2]: [PHP] Newbie redirect/variable question

2001-05-10 Thread Jakob Kruse
You should probably urlencode the address first, like this: ">test link Not sure if it solves the problem though. Regards, Jakob Kruse ""Steve Wade"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Ahh

[PHP] zlib.output_compression, how to turn it OFF?

2001-05-10 Thread Jakob Kruse
Hi. I have turned on zlib.output_compression in my PHP 4.0.5 php.ini file, and it works beautifully. But if I want to turn off all buffering/compression for a single page, how do I do that? Regards, Jakob Kruse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL